From 34ab97f081dba5116afd09df5d8a9be767748762 Mon Sep 17 00:00:00 2001 From: "simon.chupin" Date: Wed, 28 Jul 2021 00:24:05 +0200 Subject: [PATCH] Tools: Fix memory calculations of idf_size.py --- components/esp32c3/ld/esp32c3.ld | 5 +- components/esp32c3/ld/esp32c3.peripherals.ld | 1 - components/esp32s3/ld/esp32s3.ld | 3 +- tools/ci/mypy_ignore_list.txt | 288 - tools/idf_size.py | 48 +- tools/test_idf_size/app_esp32c3.map | 17372 +++++++++++++ tools/test_idf_size/app_esp32s3.map | 20987 +++++++++++++++ tools/test_idf_size/expected_output | 22931 +++++++---------- tools/test_idf_size/expected_output.json | 27 +- tools/test_idf_size/expected_output.txt | 22 +- tools/test_idf_size/test.sh | 20 + tools/test_idf_size/test_idf_size.py | 3 +- 12 files changed, 47328 insertions(+), 14379 deletions(-) delete mode 100644 tools/ci/mypy_ignore_list.txt create mode 100644 tools/test_idf_size/app_esp32c3.map create mode 100644 tools/test_idf_size/app_esp32s3.map diff --git a/components/esp32c3/ld/esp32c3.ld b/components/esp32c3/ld/esp32c3.ld index 63a26c4276..9e8b712622 100644 --- a/components/esp32c3/ld/esp32c3.ld +++ b/components/esp32c3/ld/esp32c3.ld @@ -46,7 +46,7 @@ MEMORY #if CONFIG_APP_BUILD_USE_FLASH_SECTIONS /* Flash mapped instruction data */ - iram0_2_seg (RX) : org = 0x42000020, len = 0x8000000-0x20 + iram0_2_seg (RX) : org = 0x42000020, len = 0x800000-0x20 /** * (0x20 offset above is a convenience for the app binary image generation. @@ -65,7 +65,8 @@ MEMORY #if CONFIG_APP_BUILD_USE_FLASH_SECTIONS /* Flash mapped constant data */ - drom0_0_seg (R) : org = 0x3C000020, len = 0x8000000-0x20 + drom0_0_seg (R) : org = 0x3C000020, len = 0x800000-0x20 + /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */ #endif // CONFIG_APP_BUILD_USE_FLASH_SECTIONS diff --git a/components/esp32c3/ld/esp32c3.peripherals.ld b/components/esp32c3/ld/esp32c3.peripherals.ld index a20fc97a6a..b23ca368ac 100644 --- a/components/esp32c3/ld/esp32c3.peripherals.ld +++ b/components/esp32c3/ld/esp32c3.peripherals.ld @@ -26,4 +26,3 @@ PROVIDE ( TWAI = 0x6002B000 ); PROVIDE ( GPSPI4 = 0x60037000 ); PROVIDE ( APB_SARADC = 0x60040000 ); PROVIDE ( GDMA = 0x6003F000 ); -PROVIDE ( IEEE802154 = 0x60047000 ); diff --git a/components/esp32s3/ld/esp32s3.ld b/components/esp32s3/ld/esp32s3.ld index a26a1b36a0..3a76038ba2 100644 --- a/components/esp32s3/ld/esp32s3.ld +++ b/components/esp32s3/ld/esp32s3.ld @@ -37,7 +37,6 @@ #define SRAM_DRAM_END (SRAM_IRAM_END - I_D_SRAM_OFFSET) /* 2nd stage bootloader iram_loader_seg start address */ #define I_D_SRAM_SIZE (SRAM_DRAM_END - SRAM_DRAM_START) - #define ICACHE_SIZE 0x8000 #define SRAM_IRAM_ORG (SRAM_IRAM_START + CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE) #define SRAM_IRAM_SIZE (I_D_SRAM_SIZE + ICACHE_SIZE - CONFIG_ESP32S3_INSTRUCTION_CACHE_SIZE) @@ -66,7 +65,7 @@ MEMORY #if CONFIG_APP_BUILD_USE_FLASH_SECTIONS /* Flash mapped instruction data */ iram0_2_seg (RX) : org = 0x42000020, len = 0x800000-0x20 - + /** * (0x20 offset above is a convenience for the app binary image generation. * Flash cache has 64KB pages. The .bin file which is flashed to the chip diff --git a/tools/ci/mypy_ignore_list.txt b/tools/ci/mypy_ignore_list.txt deleted file mode 100644 index f5fc329402..0000000000 --- a/tools/ci/mypy_ignore_list.txt +++ /dev/null @@ -1,288 +0,0 @@ -components/app_update/otatool.py -components/efuse/efuse_table_gen.py -components/efuse/test_efuse_host/efuse_tests.py -components/esp32s2/test/gen_digital_signature_tests.py -components/esp_local_ctrl/python/esp_local_ctrl_pb2.py -components/esp_netif/test_apps/component_ut_test.py -components/espcoredump/corefile/gdb.py -components/espcoredump/test/test_espcoredump.py -components/lwip/weekend_test/net_suite_test.py -components/mbedtls/esp_crt_bundle/gen_crt_bundle.py -components/mbedtls/esp_crt_bundle/test_gen_crt_bundle/test_gen_crt_bundle.py -components/mqtt/weekend_test/mqtt_publish_test.py -components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py -components/partition_table/gen_empty_partition.py -components/partition_table/gen_esp32part.py -components/partition_table/parttool.py -components/partition_table/test_gen_esp32part_host/gen_esp32part_tests.py -components/protocomm/python/constants_pb2.py -components/protocomm/python/sec0_pb2.py -components/protocomm/python/sec1_pb2.py -components/protocomm/python/session_pb2.py -components/ulp/esp32ulp_mapgen.py -components/wifi_provisioning/python/wifi_config_pb2.py -components/wifi_provisioning/python/wifi_constants_pb2.py -components/wifi_provisioning/python/wifi_scan_pb2.py -components/xtensa/trax/traceparse.py -docs/build_docs.py -docs/conf_common.py -docs/en/conf.py -docs/extensions/google_analytics.py -docs/extensions/html_redirects.py -docs/extensions/list_filter.py -docs/extensions/toctree_filter.py -docs/generate_chart.py -docs/get_github_rev.py -docs/idf_extensions/build_system/__init__.py -docs/idf_extensions/esp_err_definitions.py -docs/idf_extensions/exclude_docs.py -docs/idf_extensions/format_idf_target.py -docs/idf_extensions/gen_defines.py -docs/idf_extensions/gen_idf_tools_links.py -docs/idf_extensions/gen_toolchain_links.py -docs/idf_extensions/gen_version_specific_includes.py -docs/idf_extensions/include_build_file.py -docs/idf_extensions/kconfig_reference.py -docs/idf_extensions/latex_builder.py -docs/idf_extensions/link_roles.py -docs/idf_extensions/run_doxygen.py -docs/idf_extensions/util.py -docs/sanitize_version.py -docs/test/en/conf.py -docs/test/test_docs.py -docs/test/test_sphinx_idf_extensions.py -docs/zh_CN/conf.py -examples/bluetooth/nimble/blecent/blecent_test.py -examples/bluetooth/nimble/blehr/blehr_test.py -examples/bluetooth/nimble/bleprph/bleprph_test.py -examples/cxx/exceptions/example_test.py -examples/cxx/pthread/example_test.py -examples/cxx/rtti/example_test.py -examples/get-started/blink/example_test.py -examples/get-started/hello_world/example_test.py -examples/peripherals/gpio/generic_gpio/example_test.py -examples/peripherals/i2c/i2c_tools/example_test.py -examples/peripherals/rmt/ir_protocols/example_test.py -examples/peripherals/sdio/sdio_test.py -examples/peripherals/twai/twai_alert_and_recovery/example_test.py -examples/peripherals/twai/twai_network/example_test.py -examples/peripherals/twai/twai_self_test/example_test.py -examples/protocols/asio/chat_client/asio_chat_client_test.py -examples/protocols/asio/chat_server/asio_chat_server_test.py -examples/protocols/asio/ssl_client_server/example_test.py -examples/protocols/asio/tcp_echo_server/asio_tcp_server_test.py -examples/protocols/asio/udp_echo_server/asio_udp_server_test.py -examples/protocols/cbor/example_test.py -examples/protocols/esp_http_client/esp_http_client_test.py -examples/protocols/esp_local_ctrl/example_test.py -examples/protocols/esp_local_ctrl/scripts/esp_local_ctrl.py -examples/protocols/esp_local_ctrl/scripts/proto.py -examples/protocols/http_server/advanced_tests/http_server_advanced_test.py -examples/protocols/http_server/advanced_tests/scripts/test.py -examples/protocols/http_server/persistent_sockets/http_server_persistence_test.py -examples/protocols/http_server/simple/http_server_simple_test.py -examples/protocols/http_server/ws_echo_server/ws_server_example_test.py -examples/protocols/https_request/example_test.py -examples/protocols/https_x509_bundle/example_test.py -examples/protocols/icmp_echo/example_test.py -examples/protocols/mdns/mdns_example_test.py -examples/protocols/modbus/serial/example_test.py -examples/protocols/modbus/tcp/example_test.py -examples/protocols/mqtt/ssl/mqtt_ssl_example_test.py -examples/protocols/mqtt/ssl_ds/configure_ds.py -examples/protocols/mqtt/tcp/mqtt_tcp_example_test.py -examples/protocols/mqtt/ws/mqtt_ws_example_test.py -examples/protocols/mqtt/wss/mqtt_wss_example_test.py -examples/protocols/openssl_client/example_test.py -examples/protocols/openssl_server/example_test.py -examples/protocols/pppos_client/example_test.py -examples/protocols/sntp/example_test.py -examples/protocols/sockets/non_blocking/example_test.py -examples/protocols/sockets/tcp_client/example_test.py -examples/protocols/sockets/tcp_server/example_test.py -examples/protocols/sockets/udp_client/example_test.py -examples/protocols/sockets/udp_server/example_test.py -examples/protocols/websocket/example_test.py -examples/provisioning/legacy/ble_prov/ble_prov_test.py -examples/provisioning/legacy/custom_config/components/custom_provisioning/python/custom_config_pb2.py -examples/provisioning/legacy/softap_prov/softap_prov_test.py -examples/provisioning/wifi_prov_mgr/wifi_prov_mgr_test.py -examples/security/flash_encryption/example_test.py -examples/storage/ext_flash_fatfs/example_test.py -examples/storage/nvs_rw_blob/nvs_rw_blob_example_test.py -examples/storage/nvs_rw_value/nvs_rw_value_example_test.py -examples/storage/nvs_rw_value_cxx/nvs_rw_value_cxx_example_test.py -examples/storage/partition_api/partition_find/partition_find_example_test.py -examples/storage/partition_api/partition_mmap/partition_mmap_example_test.py -examples/storage/partition_api/partition_ops/partition_ops_example_test.py -examples/storage/parttool/example_test.py -examples/storage/parttool/parttool_example.py -examples/storage/sd_card/sd_card_example_test.py -examples/storage/semihost_vfs/semihost_vfs_example_test.py -examples/storage/spiffs/spiffs_example_test.py -examples/storage/spiffsgen/example_test.py -examples/storage/wear_levelling/wear_levelling_example_test.py -examples/system/app_trace_to_host/example_test.py -examples/system/base_mac_address/example_test.py -examples/system/console/example_test.py -examples/system/deep_sleep/example_test.py -examples/system/esp_event/default_event_loop/example_test.py -examples/system/esp_event/user_event_loops/example_test.py -examples/system/esp_timer/example_test.py -examples/system/freertos/real_time_stats/example_test.py -examples/system/gcov/example_test.py -examples/system/himem/example_test.py -examples/system/light_sleep/example_test.py -examples/system/ota/advanced_https_ota/example_test.py -examples/system/ota/native_ota_example/example_test.py -examples/system/ota/otatool/example_test.py -examples/system/ota/otatool/get_running_partition.py -examples/system/ota/otatool/otatool_example.py -examples/system/ota/simple_ota_example/example_test.py -examples/system/perfmon/example_test.py -examples/system/select/example_test.py -examples/system/sysview_tracing/example_test.py -examples/system/sysview_tracing_heap_log/example_test.py -examples/system/task_watchdog/example_test.py -examples/system/ulp/example_test.py -examples/system/ulp_adc/example_test.py -examples/system/unit_test/example_test.py -examples/wifi/iperf/iperf_test.py -tools/ble/lib_ble_client.py -tools/ble/lib_gap.py -tools/ble/lib_gatt.py -tools/check_python_dependencies.py -tools/check_term.py -tools/ci/check_artifacts_expire_time.py -tools/ci/check_callgraph.py -tools/ci/check_codeowners.py -tools/ci/check_deprecated_kconfigs.py -tools/ci/check_examples_cmake_make.py -tools/ci/check_executables.py -tools/ci/check_kconfigs.py -tools/ci/check_public_headers.py -tools/ci/check_readme_links.py -tools/ci/check_rules_yml.py -tools/ci/check_tools_files_patterns.py -tools/ci/checkout_project_ref.py -tools/ci/ci_fetch_submodule.py -tools/ci/deploy_docs.py -tools/ci/envsubst.py -tools/ci/normalize_clangtidy_path.py -tools/ci/python_packages/gitlab_api.py -tools/ci/python_packages/idf_http_server_test/adder.py -tools/ci/python_packages/idf_http_server_test/client.py -tools/ci/python_packages/idf_http_server_test/test.py -tools/ci/python_packages/idf_iperf_test_util/Attenuator.py -tools/ci/python_packages/idf_iperf_test_util/LineChart.py -tools/ci/python_packages/idf_iperf_test_util/PowerControl.py -tools/ci/python_packages/idf_iperf_test_util/TestReport.py -tools/ci/python_packages/tiny_test_fw/App.py -tools/ci/python_packages/tiny_test_fw/DUT.py -tools/ci/python_packages/tiny_test_fw/Env.py -tools/ci/python_packages/tiny_test_fw/EnvConfig.py -tools/ci/python_packages/tiny_test_fw/TinyFW.py -tools/ci/python_packages/tiny_test_fw/Utility/CIAssignTest.py -tools/ci/python_packages/tiny_test_fw/Utility/CaseConfig.py -tools/ci/python_packages/tiny_test_fw/Utility/GitlabCIJob.py -tools/ci/python_packages/tiny_test_fw/Utility/SearchCases.py -tools/ci/python_packages/tiny_test_fw/Utility/TestCase.py -tools/ci/python_packages/tiny_test_fw/bin/Runner.py -tools/ci/python_packages/tiny_test_fw/bin/example.py -tools/ci/python_packages/tiny_test_fw/docs/conf.py -<<<<<<< HEAD -======= -tools/ci/python_packages/ttfw_idf/CIScanTests.py ->>>>>>> idf_size.py: fixed diram counted twice issue, and improve display -tools/ci/python_packages/ttfw_idf/DebugUtils.py -tools/ci/python_packages/ttfw_idf/IDFAssignTest.py -tools/ci/python_packages/ttfw_idf/IDFDUT.py -tools/ci/python_packages/ttfw_idf/__init__.py -tools/ci/python_packages/ttfw_idf/unity_test_parser.py -tools/ci/python_packages/wifi_tools.py -tools/ci/test_autocomplete.py -tools/ci/test_check_kconfigs.py -tools/cmake/convert_to_cmake.py -tools/esp_app_trace/espytrace/apptrace.py -tools/esp_app_trace/espytrace/sysview.py -tools/esp_app_trace/logtrace_proc.py -tools/esp_app_trace/sysviewtrace_proc.py -tools/esp_prov/esp_prov.py -tools/esp_prov/prov/custom_prov.py -tools/esp_prov/prov/wifi_prov.py -tools/esp_prov/prov/wifi_scan.py -tools/esp_prov/security/security.py -tools/esp_prov/security/security0.py -tools/esp_prov/security/security1.py -tools/esp_prov/transport/ble_cli.py -tools/esp_prov/transport/transport.py -tools/esp_prov/transport/transport_ble.py -tools/esp_prov/transport/transport_console.py -tools/esp_prov/transport/transport_http.py -tools/esp_prov/utils/convenience.py -tools/find_apps.py -tools/find_build_apps/common.py -tools/find_build_apps/make.py -tools/gen_esp_err_to_name.py -tools/idf.py -tools/idf_monitor.py -tools/idf_py_actions/constants.py -tools/idf_py_actions/core_ext.py -tools/idf_py_actions/create_ext.py -tools/idf_py_actions/debug_ext.py -tools/idf_py_actions/dfu_ext.py -tools/idf_py_actions/errors.py -tools/idf_py_actions/global_options.py -tools/idf_py_actions/serial_ext.py -tools/idf_py_actions/tools.py -tools/idf_py_actions/uf2_ext.py -tools/idf_size.py -tools/kconfig_new/confgen.py -tools/kconfig_new/confserver.py -tools/kconfig_new/esp-windows-curses/setup.py -tools/kconfig_new/gen_kconfig_doc.py -tools/kconfig_new/prepare_kconfig_files.py -tools/kconfig_new/test/confgen/test_confgen.py -tools/kconfig_new/test/confserver/test_confserver.py -tools/kconfig_new/test/gen_kconfig_doc/test_kconfig_out.py -tools/kconfig_new/test/gen_kconfig_doc/test_target_visibility.py -tools/ldgen/fragments.py -tools/ldgen/generation.py -tools/ldgen/ldgen.py -tools/ldgen/ldgen_common.py -tools/ldgen/linker_script.py -tools/ldgen/output_commands.py -tools/ldgen/sdkconfig.py -tools/ldgen/test/test_entity.py -tools/ldgen/test/test_fragments.py -tools/ldgen/test/test_generation.py -tools/ldgen/test/test_output_commands.py -tools/mass_mfg/mfg_gen.py -tools/mkuf2.py -tools/test_apps/build_system/ldgen_test/check_placements.py -tools/test_apps/protocols/mqtt/publish_connect_test/app_test.py -tools/test_apps/protocols/openssl/app_test.py -tools/test_apps/protocols/pppos/app_test.py -tools/test_apps/system/gdb_loadable_elf/app_test.py -tools/test_apps/system/longjmp_test/app_test.py -tools/test_apps/system/memprot/app_test.py -tools/test_apps/system/monitor_ide_integration/app_test.py -tools/test_apps/system/panic/app_test.py -tools/test_apps/system/panic/panic_tests.py -tools/test_apps/system/panic/test_panic_util/test_panic_util.py -tools/test_apps/system/startup/app_test.py -tools/test_idf_monitor/idf_monitor_wrapper.py -tools/test_idf_monitor/run_test_idf_monitor.py -tools/test_idf_py/extra_path/some_ext.py -tools/test_idf_py/idf_ext.py -tools/test_idf_py/test_idf_extensions/test_ext/test_extension.py -tools/test_idf_py/test_idf_py.py -tools/test_idf_size/test_idf_size.py -tools/test_idf_tools/test_idf_tools.py -tools/test_mkdfu/test_mkdfu.py -tools/test_mkuf2/test_mkuf2.py -tools/unit-test-app/idf_ext.py -tools/unit-test-app/tools/CreateSectionTable.py -tools/unit-test-app/tools/UnitTestParser.py -tools/unit-test-app/unit_test.py -tools/windows/eclipse_make.py diff --git a/tools/idf_size.py b/tools/idf_size.py index 7b8a09f98a..ca203f836a 100755 --- a/tools/idf_size.py +++ b/tools/idf_size.py @@ -113,7 +113,7 @@ class MemRegions(object): MemRegDef(0x3ff80000, 0x2000, MemRegions.RTC_FAST_D_ID, 0x600FE000), MemRegDef(0x50000000, 0x2000, MemRegions.RTC_SLOW_D_ID, 0), ]) - elif target == 'esp32c3': + elif target in ['esp32c3']: return sorted([ MemRegDef(0x3FC80000, 0x60000, MemRegions.DRAM_ID, 0x40380000), MemRegDef(0x4037C000, 0x4000, MemRegions.IRAM_ID, 0), @@ -137,7 +137,6 @@ class MemRegions(object): if (region.secondary_addr and region.secondary_addr <= start < region.secondary_addr + region.length): return (region, min(length, region.secondary_addr + region.length - start)) - raise RuntimeError('Given section not found in any memory region. ' 'Check whether the LD file is compatible with the definitions in get_mem_regions in idf_size.py') @@ -223,12 +222,13 @@ class LinkingSections(object): score_list = [get_name_score(section) for section in section_name_list] ordered_name_list = sorted(section_name_list, key=lambda x: score_list[section_name_list.index(x)], reverse=True) - display_name_list = ordered_name_list.copy() + display_name_list = ordered_name_list[:] memory_name = '' - for i in range(len(section_name_list)): - section = ordered_name_list[i] - + display_name_list = sorted(display_name_list) + ordered_name_list = sorted(ordered_name_list) + ordered_name_list = check_is_dict_sort(ordered_name_list) + for i, section in enumerate(ordered_name_list): if memory_name and section.startswith(memory_name): # If the section has same memory type with the previous one, use shorter name display_name_list[i] = section.replace(memory_name, '& ') @@ -239,9 +239,12 @@ class LinkingSections(object): if len(split_name) > 1: # If the section has a memory type, update the type and try to display the type properly assert len(split_name) == 3 and split_name[0] == '', 'Unexpected section name' - memory_name = '.' + split_name[1] + memory_name = '.iram' if 'iram' in split_name[1] else\ + '.dram' if 'dram' in split_name[1] else\ + '.flash' if 'flash' in split_name[1] else\ + '.' + split_name[1] display_name_list[i] = 'DRAM .' + split_name[2] if 'dram' in split_name[1] else\ - 'IRAM .' + split_name[2] if 'iram' in split_name[1] else\ + 'IRAM' + split_name[1].replace('iram', '') + ' .' + split_name[2] if 'iram' in split_name[1] else\ 'Flash .' + split_name[2] if 'flash' in split_name[1] else\ section continue @@ -605,9 +608,10 @@ class StructureForSummary(object): dram_filter = filter(in_dram, segments) r.dram_total = get_size(dram_filter) - iram_filter = filter(in_iram, segments) r.iram_total = get_size(iram_filter) + if r.diram_total == 0: + r.diram_total = r.dram_total + r.iram_total def filter_in_section(sections, section_to_check): # type: (Iterable[MemRegions.Region], str) -> List[MemRegions.Region] return list(filter(lambda x: LinkingSections.in_section(x.section, section_to_check), sections)) # type: ignore @@ -615,6 +619,8 @@ class StructureForSummary(object): dram_sections = list(filter(in_dram, sections)) iram_sections = list(filter(in_iram, sections)) diram_sections = list(filter(in_diram, sections)) + if not diram_sections: + diram_sections = dram_sections + iram_sections flash_sections = filter_in_section(sections, 'flash') dram_data_list = filter_in_section(dram_sections, 'data') @@ -679,7 +685,6 @@ class StructureForSummary(object): # The used DRAM BSS is counted into the "Used static DRAM" but not into the "Total image size" r.total_size = r.used_dram - r.used_dram_bss + r.used_iram + r.used_diram - r.used_diram_bss + r.used_flash - return r def get_json_dic(self): # type: (StructureForSummary) -> collections.OrderedDict @@ -867,6 +872,23 @@ def get_summary(path, segments, sections, target, return output +def check_is_dict_sort(non_sort_list): # type: (List) -> List + # keeping the order data, bss, other, iram, diram, ram_st_total, flash_text, flash_rodata, flash_total + start_of_other = 0 + props_sort = [] # type: List + props_elem = ['.data', '.bss', 'other', 'iram', 'diram', 'ram_st_total', 'flash.text', 'flash.rodata', 'flash', 'flash_total'] + for i in props_elem: + for j in non_sort_list: + if i == 'other': + start_of_other = len(props_sort) + elif i in (j[0] if len(j[0]) > 1 else j) and (j[0] if len(j[0]) > 1 else j) not in props_sort: + props_sort.append(j) + for j in non_sort_list: + if j not in props_sort: + props_sort.insert(start_of_other, j) + return props_sort + + class StructureForDetailedSizes(object): @staticmethod @@ -905,8 +927,10 @@ class StructureForDetailedSizes(object): section_dict['ram_st_total'] = ram_st_total section_dict['flash_total'] = flash_total - # TODO: keep the order data, bss, other, iram, diram, ram_st_total, flash_text, flash_rodata, flash_total - s.append((key, collections.OrderedDict(section_dict))) + sorted_dict = sorted(section_dict.items(), key=lambda elem: elem[0]) + sorted_dict = check_is_dict_sort(sorted_dict) + + s.append((key, collections.OrderedDict(sorted_dict))) s = sorted(s, key=lambda elem: elem[0]) # do a secondary sort in order to have consistent order (for diff-ing the output) diff --git a/tools/test_idf_size/app_esp32c3.map b/tools/test_idf_size/app_esp32c3.map new file mode 100644 index 0000000000..17d9811b32 --- /dev/null +++ b/tools/test_idf_size/app_esp32c3.map @@ -0,0 +1,17372 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/app_update/libapp_update.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/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(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_system.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_restart_noos_dig) +esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (g_startup_fn) +esp-idf/esp_system/libesp_system.a(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(apb_backup_dma.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_apb_backup_dma_lock_init) +esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (panic_abort) +esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (panic_restart) +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_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_uart_set_clock_baudrate) +esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (wdt_hal_init) +esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (cpu_hal_set_breakpoint) +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/vfs/libvfs.a(vfs.c.obj) + (vfs_include_syscalls_impl) +esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_vfs_dev_uart_register) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (esp_log_write) +esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (heap_caps_get_free_size) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) +esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (esp_cpu_reset) +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(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_sleep_config_gpio_isolate) +esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) (regi2c_ctrl_write_reg_mask) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_vddsdio_get_config) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (rtc_sleep_pu) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) +esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_memprot_intr_get_cpuid) +esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (intr_handler_set) +esp-idf/riscv/libriscv.a(vectors.S.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (_vector_table) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_timer_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_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_timer_private_lock) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (vPortExitCritical) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) (rtos_int_enter) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (esp_startup_start_app_common) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) (xQueueGenericCreate) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (xTaskCreatePinnedToCore) +esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + (uxTopUsedPriority) +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(heap.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) (_lock_acquire) +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/main/libmain.a(hello_world_main.c.obj) + (app_main) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (ESP_EFUSE_DIG_DBIAS_HVT) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (esp_efuse_get_chip_ver) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (esp_efuse_read_field_blob) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) +esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (gpio_pullup_en) +esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (periph_module_enable) +esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (uart_set_word_length) +esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (periph_inform_out_light_sleep_overhead) +esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) (esp_pm_lock_create) +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_config_esp32c3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) (bootloader_read_flash_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (bootloader_execute_flash_command) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (spi_flash_cache_enabled) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (spi_flash_mmap) +esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mspi_pin_init) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (spi_flash_erase_range) +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_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_api.c.obj) (esp_flash_app_disable_os_functions) +esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_partition_main_flash_region_safe) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_registered_chips) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_mxic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_page_program) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_boya) +esp-idf/spi_flash/libspi_flash.a(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/vfs/libvfs.a(vfs_uart.c.obj) (_esp_error_check_failed) +esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) (esp_crosscore_int_init) +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(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) (esp_int_wdt_init) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) (esp_task_wdt_init) +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/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (interrupt_controller_hal_desc_level) +esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) +esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (systimer_hal_init) +esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_cntl_hal_dma_link_init) +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(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(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_periph_signal) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.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(chip_info.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) (esp_chip_info) +esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) (riscv_decode_offset_from_jal_instruction) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) (esp_err_to_name) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferCreate) +esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spicommon_bus_using_iomux) +esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) (spi_bus_init_lock) +esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) (gdma_new_channel) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (esp_ota_get_running_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_image_verify) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) (bootloader_common_get_chip_revision) +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_esp32c3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) (gdma_hal_init) +esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) (gdma_periph_signals) +esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) (__atomic_compare_exchange_1) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) (esp_sha_write_digest_state) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_sha_dma_start) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) (esp_crypto_shared_gdma_start) +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/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_crypto_sha_aes_lock_acquire) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (__ffssi2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) (__clz_tab) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + esp-idf/heap/libheap.a(multi_heap.c.obj) (__clzsi2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + (__assert_func) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (__errno) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) (fflush) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) (fiprintf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (fopen) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fprintf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) (_fseek_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) (_fseeko_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) (_ftello_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) (__sfvwrite_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) (_fwalk) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fwrite) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (_global_impure_ptr) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) (__smakebuf_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) (memchr) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (memcmp) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (memcpy) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) (memmove) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) (__month_lengths) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) (__srefill_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) (__sread) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (strcmp) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (strlcpy) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strlen) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (strncpy) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) (_svfprintf_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (gettimeofday) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) (__tz_lock) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) (_tzset_unlocked_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) (_timezone) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) (__utoa) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) (_vfiprintf_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) (_vfprintf_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) (__swsetup_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (_dtoa_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) (_fclose_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) (__sflags) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) (_getenv_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) (__gettzinfo) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) (gmtime_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (_localeconv_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) (_Balloc) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (frexp) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) (siscanf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) (_strerror_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) (strtoul) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__ssprint_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) (__ssvfiscanf_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) (_user_strerror) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (__submore) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) (_ctype_) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) (__env_lock) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (iswspace) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) (iswspace_l) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (__locale_mb_cur_max) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (_mbrtowc_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) (__ascii_mbtowc) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (__sccl) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (_strtol_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (_strtoll_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) (_strtoull_r) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) (__ascii_wctomb) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) (__adddf3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) (__divdf3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__eqdf2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) (__gedf2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__ledf2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__muldf3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__subdf3) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__unorddf2) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__fixdfsi) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__floatsidf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) (__floatunsidf) +/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) (__trunctfdf2) + +Allocating common symbols +Common symbol size file + +panic_reasons 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +registered_heaps 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + +Discarded input sections + + .text 0x0000000000000000 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32c3.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32c3.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32c3.c.obj + .comment 0x0000000000000000 0x26 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32c3.c.obj + .riscv.attributes + 0x0000000000000000 0x24 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32c3.c.obj + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.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 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x0000000000000000 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x0000000000000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x0000000000000000 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.mutexattr_check + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.27 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x0000000000000000 0x6c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x0000000000000000 0x4c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x0000000000000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x0000000000000000 0x270 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x0000000000000000 0x196 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x0000000000000000 0xb8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x0000000000000000 0xfa esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x0000000000000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x0000000000000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x0000000000000000 0x9a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x0000000000000000 0x64 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x0000000000000000 0x8a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x0000000000000000 0x9c esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.28 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.29 0x0000000000000000 0x70 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.30 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.31 0x0000000000000000 0x96 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x0000000000000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x0000000000000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x0000000000000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x0000000000000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x0000000000000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x0000000000000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__.5828 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__.5846 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5798 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5808 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5816 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5823 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5835 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5864 + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__.5893 + 0x0000000000000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.4 + 0x0000000000000000 0xf1 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_destroy.str1.4 + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x0000000000000000 0x29 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x0000000000000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sbss.s_threads_list + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sdata.pthread_lazy_init_lock + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.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.find_value + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_local_storage_thread_deleted_callback + 0x0000000000000000 0x6c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_getspecific + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_setspecific + 0x0000000000000000 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.__func__.5573 + 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.pthread_local_storage_thread_deleted_callback.str1.4 + 0x0000000000000000 0x3b esp-idf/pthread/libpthread.a(pthread_local_storage.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 0x10 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler + 0x0000000000000000 0x58 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3774 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3779 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3785 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3791 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3797 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3802 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3808 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3814 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3819 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3823 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3828 + 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3833 + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3837 + 0x0000000000000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3841 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3845 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3851 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__.3855 + 0x0000000000000000 0x1f 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 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) + .sdata.g_spiram_ok + 0x0000000000000000 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.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 0x14 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_unregister_shutdown_handler + 0x0000000000000000 0x3a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_free_heap_size + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_free_internal_heap_size + 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_idf_version + 0x0000000000000000 0xa esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_system.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.__cxx_eh_arena_size_get + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(startup.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 0x1a 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(apb_backup_dma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.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(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) + COMMON 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.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.panic_get_address + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_set_address + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.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) + .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 0x92 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text.cpu_hal_clear_breakpoint + 0x0000000000000000 0x12 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text.cpu_hal_set_watchpoint + 0x0000000000000000 0x54 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text.cpu_hal_clear_watchpoint + 0x0000000000000000 0x2a esp-idf/hal/libhal.a(cpu_hal.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 0x1a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x0000000000000000 0x26 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x0000000000000000 0x2c 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) + .text.brownout_hal_intr_enable + 0x0000000000000000 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text.brownout_hal_intr_clear + 0x0000000000000000 0x12 esp-idf/hal/libhal.a(brownout_hal.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.call_end_selects + 0x0000000000000000 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x0000000000000000 0x174 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_range + 0x0000000000000000 0x15a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x0000000000000000 0x2e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x0000000000000000 0xb4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x0000000000000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x0000000000000000 0xd8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x0000000000000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x0000000000000000 0xb6 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x0000000000000000 0xa4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x0000000000000000 0xa4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fcntl_r + 0x0000000000000000 0x92 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x0000000000000000 0x9a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fsync + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x0000000000000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x0000000000000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x0000000000000000 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x0000000000000000 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x0000000000000000 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x0000000000000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x0000000000000000 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x0000000000000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x0000000000000000 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_access + 0x0000000000000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x0000000000000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select + 0x0000000000000000 0x4c6 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x0000000000000000 0x86 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x0000000000000000 0x90 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x0000000000000000 0x86 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x0000000000000000 0x86 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x0000000000000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x0000000000000000 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x0000000000000000 0x1 esp-idf/vfs/libvfs.a(vfs.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 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tx_char_via_driver + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_rx_line_endings + 0x0000000000000000 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_tx_line_endings + 0x0000000000000000 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x0000000000000000 0x20 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x0000000000000000 0x20 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x68 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_driver + 0x0000000000000000 0x68 esp-idf/vfs/libvfs.a(vfs_uart.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 0x32 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_set + 0x0000000000000000 0x18e esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_get + 0x0000000000000000 0x22 esp-idf/log/liblog.a(log.c.obj) + .rodata.__func__.3628 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log.c.obj) + .rodata.esp_log_level_set.str1.4 + 0x0000000000000000 0x2 esp-idf/log/liblog.a(log.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) + .text.esp_log_impl_lock + 0x0000000000000000 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x0000000000000000 0xec esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer.4862 + 0x0000000000000000 0x12 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) + .sbss.bufferLock.4863 + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_freertos.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 0x14 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.29 0x0000000000000000 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.30 0x0000000000000000 0x4c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.35 0x0000000000000000 0x46 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.31 0x0000000000000000 0x4a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x0000000000000000 0x42 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_free_size + 0x0000000000000000 0x46 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x0000000000000000 0xb8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x0000000000000000 0x74 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x0000000000000000 0x2a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x0000000000000000 0x56 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x0000000000000000 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.36 0x0000000000000000 0xcc esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.37 0x0000000000000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x0000000000000000 0x46 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.4556 + 0x0000000000000000 0x18 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 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x0000000000000000 0x15a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x0000000000000000 0x84 esp-idf/heap/libheap.a(heap_caps_init.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) + .text.multi_heap_dump_tlsf + 0x0000000000000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_owner + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_lock + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_unlock + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x0000000000000000 0x3c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x0000000000000000 0x54 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x0000000000000000 0x6 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl_offs + 0x0000000000000000 0x86 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x0000000000000000 0x7c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x0000000000000000 0x7c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x0000000000000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__.4534 + 0x0000000000000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__.4541 + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__.4580 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__.4590 + 0x0000000000000000 0x10 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) + .rodata.multi_heap_dump_tlsf.str1.4 + 0x0000000000000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.integrity_walker + 0x0000000000000000 0x86 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_check + 0x0000000000000000 0x278 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_check_pool + 0x0000000000000000 0x22 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_align_size + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_block_size_max + 0x0000000000000000 0x6 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_alloc_overhead + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_remove_pool + 0x0000000000000000 0x186 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_memalign_offs + 0x0000000000000000 0x754 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_memalign + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3630 + 0x0000000000000000 0x9 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3641 + 0x0000000000000000 0xa esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3790 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3802 + 0x0000000000000000 0xb esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3875 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3907 + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.tlsf_check.str1.4 + 0x0000000000000000 0x237 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.4 + 0x0000000000000000 0x6b esp-idf/heap/libheap.a(heap_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) + .sdata2.soc_memory_type_count + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.3 0x0000000000000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.4 0x0000000000000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.6 0x0000000000000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.7 0x0000000000000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.4 0x0000000000000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x0000000000000000 0x12 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(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 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.27 0x0000000000000000 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_cpu + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.32 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.33 0x0000000000000000 0x20 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(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.periph_ll_get_clk_en_reg + 0x0000000000000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.periph_ll_get_rst_en_reg + 0x0000000000000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.29 0x0000000000000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.31 0x0000000000000000 0x2a8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x0000000000000000 0xd2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_wakeup_prepare + 0x0000000000000000 0x154 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.timer_wakeup_prepare + 0x0000000000000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.30 0x0000000000000000 0x284 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.32 0x0000000000000000 0x29e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.34 0x0000000000000000 0x224 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.37 0x0000000000000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x0000000000000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_set_deep_sleep_wake_stub + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_cpu_pd_low_init + 0x0000000000000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.36 0x0000000000000000 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x0000000000000000 0x348 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x0000000000000000 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x0000000000000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x0000000000000000 0x14 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) + .text.esp_deep_sleep_enable_gpio_wakeup + 0x0000000000000000 0x166 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x0000000000000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_gpio_wakeup_status + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_disable_rom_logging + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.s_config + 0x0000000000000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__.9210 + 0x0000000000000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_deep_sleep_enable_gpio_wakeup.str1.4 + 0x0000000000000000 0x75 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_deep_sleep_wakeup_prepare.str1.4 + 0x0000000000000000 0xb3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x0000000000000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .sbss.s_light_sleep_wakeup + 0x0000000000000000 0x1 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(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.26 0x0000000000000000 0x3e 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(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 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_freq_get + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_divider_set + 0x0000000000000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_divider_set + 0x0000000000000000 0x26 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 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 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x0000000000000000 0x44 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_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 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x0000000000000000 0x264 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x0000000000000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_set_wakeup_time + 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x0000000000000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_deep_sleep_start + 0x0000000000000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .srodata 0x0000000000000000 0x4 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_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 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_light_slp_time_get + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_deep_slp_time_get + 0x0000000000000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x0000000000000000 0x22 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(memprot.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .iram1.11 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .iram1.12 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .iram1.13 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .iram1.5 0x0000000000000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text.esp_memprot_split_line_to_str + 0x0000000000000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text.esp_memprot_get_split_addr + 0x0000000000000000 0x236 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text.esp_memprot_iram_get_pms_area + 0x0000000000000000 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text.esp_memprot_dram_get_pms_area + 0x0000000000000000 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text.esp_memprot_get_monitor_en + 0x0000000000000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .iram1.4 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text.esp_memprot_get_monitor_enable_reg + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .rodata.esp_memprot_split_line_to_str.str1.4 + 0x0000000000000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .text 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text.intr_handler_get_arg + 0x0000000000000000 0x10 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text.intr_matrix_route + 0x0000000000000000 0x3a esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text.esprv_intc_get_interrupt_unmask + 0x0000000000000000 0xa esp-idf/riscv/libriscv.a(interrupt.c.obj) + .data.riscv_excp_names + 0x0000000000000000 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.__func__.2322 + 0x0000000000000000 0x12 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.intr_matrix_route.str1.4 + 0x0000000000000000 0xe esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xfd esp-idf/riscv/libriscv.a(interrupt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .data 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_line 0x0000000000000000 0x2c6 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_info 0x0000000000000000 0x26 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/riscv/libriscv.a(vectors.S.obj) + .debug_str 0x0000000000000000 0xd0 esp-idf/riscv/libriscv.a(vectors.S.obj) + .riscv.attributes + 0x0000000000000000 0x28 esp-idf/riscv/libriscv.a(vectors.S.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) + .iram1.31 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.30 0x0000000000000000 0x92 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x0000000000000000 0x4c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_create + 0x0000000000000000 0x8c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.26 0x0000000000000000 0x9c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.27 0x0000000000000000 0xd8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.28 0x0000000000000000 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_delete + 0x0000000000000000 0x88 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x0000000000000000 0x5e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x0000000000000000 0x116 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.36 0x0000000000000000 0x66 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.37 0x0000000000000000 0x72 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_is_active + 0x0000000000000000 0x12 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) + .rodata.print_timer_info.str1.4 + 0x0000000000000000 0x1f 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.4 0x0000000000000000 0x6 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_lock + 0x0000000000000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_unlock + 0x0000000000000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.24 0x0000000000000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.27 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.29 0x0000000000000000 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x0000000000000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x0000000000000000 0x54 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.30 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .sdata.s_time_update_lock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x0000000000000000 0x6 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.27 0x0000000000000000 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortCPUAcquireMutexTimeout + 0x0000000000000000 0x4 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) + .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) + .sbss.port_xSchedulerRunning + 0x0000000000000000 0x4 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(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) + .text.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x72 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphore + 0x0000000000000000 0x6e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericSendFromISR + 0x0000000000000000 0x156 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueReceive + 0x0000000000000000 0x1dc esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x0000000000000000 0x1d4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x0000000000000000 0xe0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaiting + 0x0000000000000000 0x4a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x3e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x0000000000000000 0x74 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4780 + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4800 + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4806 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4829 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4849 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4873 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4895 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4901 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4907 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4913 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4955 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4965 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x0000000000000000 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x0000000000000000 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolderFromISR.str1.4 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.4 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.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.prvTaskCheckFreeStackSpace + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshot + 0x0000000000000000 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x7e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvFirstTaskGet + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvNextTaskGet + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x0000000000000000 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateStaticPinnedToCore + 0x0000000000000000 0x13a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelayUntil + 0x0000000000000000 0xe8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x0000000000000000 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGet + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPrioritySet + 0x0000000000000000 0x17e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x0000000000000000 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x0000000000000000 0xfe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x0000000000000000 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x0000000000000000 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSuspend + 0x0000000000000000 0x152 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnUnorderedEventList + 0x0000000000000000 0x80 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskRemoveFromUnorderedEventList + 0x0000000000000000 0xf0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x0000000000000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000000000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetThreadLocalStoragePointer + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskResetEventItemValue + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyWait + 0x0000000000000000 0xe4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotify + 0x0000000000000000 0x1aa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x0000000000000000 0x1d2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyStateClear + 0x0000000000000000 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x0000000000000000 0xd2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskGetSnapshot + 0x0000000000000000 0x80 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetNext + 0x0000000000000000 0x194 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4709 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4765 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4779 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4798 + 0x0000000000000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4805 + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4811 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4816 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4822 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4876 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4885 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4935 + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4941 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4960 + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4964 + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.5127 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.5145 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.5213 + 0x0000000000000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x0000000000000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskGetSnapshot.str1.4 + 0x0000000000000000 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPrioritySet.str1.4 + 0x0000000000000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.4 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x0000000000000000 0xa1 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandle.str1.4 + 0x0000000000000000 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(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) + .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.malloc_trim + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x0000000000000000 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x0000000000000000 0x2a esp-idf/newlib/libnewlib.a(heap.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.27 0x0000000000000000 0x18 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.28 0x0000000000000000 0x18 esp-idf/newlib/libnewlib.a(locks.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) + .text.pthread_condattr_setclock + 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x0000000000000000 0xa esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.__func__.3488 + 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(pthread.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 0x102 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) + .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 0x4e esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x0000000000000000 0x46 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.fcntl 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(syscalls.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 0x152 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.usleep 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.sleep 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x0000000000000000 0xaa esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x0000000000000000 0x32 esp-idf/newlib/libnewlib.a(time.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 0x12 esp-idf/newlib/libnewlib.a(esp_time_impl.c.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 0x36 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0x106 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x0000000000000000 0x64 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x0000000000000000 0xe6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x0000000000000000 0xda esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x0000000000000000 0xfe esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x0000000000000000 0x2a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ17__cxa_guard_abortE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_acquireE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_releaseE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZL18wait_for_guard_objP7guard_tE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x22 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x0000000000000000 0x77 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x0000000000000000 0x3f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL19s_static_init_mutex + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL22s_static_init_wait_sem + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL27s_static_init_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .sbss._ZL31s_static_init_max_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(hello_world_main.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_MAC_FACTORY + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_BLOCK1_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_BTLC_GPIO_ENABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_CAN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_ICACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_ICACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_LEGACY_SPI_BOOT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_PAD_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_RTC_RAM_BOOT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_DEVICE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_DOWNLOAD_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_DIS_USB_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_ECC_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_ECC_MODE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_PAGE_SIZE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_TPUW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FLASH_TYPE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_FORCE_SEND_RESUME + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_JTAG_SEL_ENABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_KEY_PURPOSE_5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_PIN_POWER_SELECTION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_PKG_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_POWERGLITCH_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_POWER_GLITCH_DSENSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_RD_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SOFT_DIS_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D6 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D7 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_DQS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D_D0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_TEMP_CALIB + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_THRES_HVT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_UART_PRINT_CHANNEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_UART_PRINT_CONTROL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USB_DREFH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USB_DREFL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USB_EXCHG_PINS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USER_DATA + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WDT_DELAY_SEL + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_GROUP_1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_GROUP_2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_GROUP_3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY0_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY1_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY2_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY3_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY4 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY4_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY5 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_KEY5_PURPOSE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_RD_DIS + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata.ESP_EFUSE_WR_DIS_USER_DATA + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_CAL_VOL_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_CAL_VOL_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_CAL_VOL_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_CAL_VOL_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_INIT_CODE_ATTEN0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_INIT_CODE_ATTEN1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_INIT_CODE_ATTEN2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ADC1_INIT_CODE_ATTEN3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.BLOCK1_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.BTLC_GPIO_ENABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_CAN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_DOWNLOAD_ICACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_DOWNLOAD_MANUAL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_FORCE_DOWNLOAD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_ICACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_LEGACY_SPI_BOOT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_PAD_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_RTC_RAM_BOOT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_USB + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_USB_DEVICE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_USB_DOWNLOAD_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIS_USB_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.ENABLE_SECURITY_DOWNLOAD + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.FLASH_ECC_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.FLASH_ECC_MODE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.FLASH_PAGE_SIZE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.FLASH_TPUW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.FLASH_TYPE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.FORCE_SEND_RESUME + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.JTAG_SEL_ENABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY0 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY1 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY2 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY3 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY4 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY5 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY_PURPOSE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY_PURPOSE_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY_PURPOSE_2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY_PURPOSE_3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY_PURPOSE_4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.KEY_PURPOSE_5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.OPTIONAL_UNIQUE_ID + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.PIN_POWER_SELECTION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.PKG_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.POWERGLITCH_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.POWER_GLITCH_DSENSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_KEY0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_KEY1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_KEY2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_KEY3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_KEY4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_KEY5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.RD_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SECURE_BOOT_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SOFT_DIS_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_CLK + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_CS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_D4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_D5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_D6 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_D7 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_DQS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_D_D0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_HD_D3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_Q_D1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SPI_PAD_CONFIG_WP_D2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.TEMP_CALIB + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.THRES_HVT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.UART_PRINT_CHANNEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.UART_PRINT_CONTROL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.USB_DREFH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.USB_DREFL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.USB_EXCHG_PINS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.USER_DATA + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.USER_DATA_MAC_CUSTOM + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.VDD_SPI_AS_GPIO + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WDT_DELAY_SEL + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_GROUP_1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_GROUP_2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_GROUP_3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY0_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY1_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY2_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY3_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY4 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY4_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY5 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_KEY5_PURPOSE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_RD_DIS + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SECURE_BOOT_EN + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SECURE_BOOT_KEY_REVOKE0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SECURE_BOOT_KEY_REVOKE1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SECURE_BOOT_KEY_REVOKE2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SPI_BOOT_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SYS_DATA_PART1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_SYS_DATA_PART2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WR_DIS_USER_DATA + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.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 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_enable_rom_secure_download_mode + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x0000000000000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x0000000000000000 0xae esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x0000000000000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x0000000000000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x0000000000000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x0000000000000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x0000000000000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x0000000000000000 0xae esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__.5040 + 0x0000000000000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__.5079 + 0x0000000000000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__.5107 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x0000000000000000 0x5b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x0000000000000000 0x75 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x0000000000000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.4 + 0x0000000000000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .sbss.s_batch_writing_mode + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .sbss.s_efuse_lock + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.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 0xdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x0000000000000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x0000000000000000 0x62 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x0000000000000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x9a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x0000000000000000 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x0000000000000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__.4047 + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__.4096 + 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__.4111 + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.4 + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x0000000000000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x0000000000000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x0000000000000000 0xee esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x0000000000000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__.4010 + 0x0000000000000000 0x15 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_set_timing.str1.4 + 0x0000000000000000 0x3d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x0000000000000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.4 + 0x0000000000000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_block_is_empty + 0x0000000000000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_write_protect + 0x0000000000000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_read_protect + 0x0000000000000000 0x54 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_coding_scheme + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_purpose_field + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_key + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_key_dis_read + 0x0000000000000000 0x54 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_key_dis_read + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_key_dis_write + 0x0000000000000000 0x54 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_key_dis_write + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_key_purpose + 0x0000000000000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_key_purpose + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x0000000000000000 0x54 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_keypurpose_dis_write + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_find_purpose + 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_key_block_unused + 0x0000000000000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_find_unused_key_block + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_count_unused_key_blocks + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_digest_revoke + 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_digest_revoke + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_get_write_protect_of_digest_revoke + 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_set_write_protect_of_digest_revoke + 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_write_key + 0x0000000000000000 0xea esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_efuse_write_keys + 0x0000000000000000 0x156 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text.esp_secure_boot_read_key_digests + 0x0000000000000000 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.__func__.4058 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.__func__.4067 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.__func__.4087 + 0x0000000000000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.__func__.4123 + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.__func__.4130 + 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.__func__.4164 + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.esp_efuse_get_digest_revoke.str1.4 + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x0000000000000000 0x6d esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x0000000000000000 0xf4 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.esp_secure_boot_read_key_digests.str1.4 + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.s_revoke_table + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .rodata.s_table + 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_info 0x0000000000000000 0x21d1 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_abbrev 0x0000000000000000 0x384 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_loc 0x0000000000000000 0xb17 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_ranges 0x0000000000000000 0x148 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_line 0x0000000000000000 0x13d8 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_str 0x0000000000000000 0x1cc2 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .debug_frame 0x0000000000000000 0x34c esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_enable + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_disable + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_disable + 0x0000000000000000 0x9e 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) + .text.gpio_intr_enable_on_core + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_enable + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.25 0x0000000000000000 0x8a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_intr_type + 0x0000000000000000 0xea esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable + 0x0000000000000000 0xae esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_disable + 0x0000000000000000 0x7a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_level + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x0000000000000000 0x15e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_direction + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_config + 0x0000000000000000 0x21a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x0000000000000000 0x124 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x0000000000000000 0xfa esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x0000000000000000 0xfa esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x0000000000000000 0xae esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x0000000000000000 0xf2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x0000000000000000 0xde esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_en + 0x0000000000000000 0xc4 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x0000000000000000 0xcc esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_force_hold_all + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_force_unhold_all + 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x0000000000000000 0x32 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_wakeup_enable + 0x0000000000000000 0x102 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_wakeup_disable + 0x0000000000000000 0xaa esp-idf/driver/libdriver.a(gpio.c.obj) + .data.gpio_context + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6006 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6010 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6014 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6018 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6023 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6028 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6032 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6036 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6040 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6044 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6048 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6052 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6056 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6060 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6065 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6073 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6085 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6123 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6130 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6134 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6149 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6156 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6161 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6167 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6173 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6178 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6183 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__.6098 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__.6104 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x0000000000000000 0xd6 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_deep_sleep_wakeup_enable.str1.4 + 0x0000000000000000 0x42 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) + .rodata.gpio_hold_en.str1.4 + 0x0000000000000000 0x2f 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) + .rodata.gpio_isr_handler_add.str1.4 + 0x0000000000000000 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x0000000000000000 0x2e 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) + .rodata.gpio_set_intr_type.str1.4 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .sdata._gpio_hal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_disable + 0x0000000000000000 0x2e0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x0000000000000000 0x188 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .iram1.27 0x0000000000000000 0x78 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .iram1.28 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.wifi_module_enable + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.wifi_module_disable + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.__func__.4242 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.__func__.4246 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(periph_ctrl.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 0x44 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.rtc_clk_enable + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_link_free + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.rtc_clk_disable + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x0000000000000000 0xb4 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_enable + 0x0000000000000000 0xaa esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x0000000000000000 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x0000000000000000 0x822 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_disable + 0x0000000000000000 0x66 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x0000000000000000 0x116 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x0000000000000000 0x104 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_clear_intr_status + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_intr_mask + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x0000000000000000 0xae esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x0000000000000000 0x9e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x156 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_rx_intr + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_check_buf_full + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_rx_intr + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x0000000000000000 0xcc esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_all + 0x0000000000000000 0x25a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_register + 0x0000000000000000 0xa2 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_free + 0x0000000000000000 0x10e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x0000000000000000 0x452 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rts + 0x0000000000000000 0xd2 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_dtr + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_param_config + 0x0000000000000000 0x208 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_intr_config + 0x0000000000000000 0x14e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x0000000000000000 0x17c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes + 0x0000000000000000 0xd8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x0000000000000000 0x156 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_read_bytes + 0x0000000000000000 0x234 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_delete + 0x0000000000000000 0x29a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_install + 0x0000000000000000 0x418 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x0000000000000000 0x11c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x0000000000000000 0x11c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x0000000000000000 0xca esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x0000000000000000 0x122 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x0000000000000000 0xc4 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x0000000000000000 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_loop_back + 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7193 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7200 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7207 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7212 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7217 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7227 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7257 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7263 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7270 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7281 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7300 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7310 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7315 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7330 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7335 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7340 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7345 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7350 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7355 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7403 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7429 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7436 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7447 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7488 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7494 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7510 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7515 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7520 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7525 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7531 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7536 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7541 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7545 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7553 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__.7142 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.rtc_clk_disable.str1.4 + 0x0000000000000000 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x0000000000000000 0x181 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.4 + 0x0000000000000000 0x37 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.4 + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x0000000000000000 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x0000000000000000 0x3d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x0000000000000000 0x43 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_tx_chars.str1.4 + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x0000000000000000 0x8f esp-idf/driver/libdriver.a(uart.c.obj) + .sbss.pat_flg.7376 + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .sbss.rtc_enabled + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.26 0x0000000000000000 0x20 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.28 0x0000000000000000 0x32 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.29 0x0000000000000000 0x120 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.30 0x0000000000000000 0x2e esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_get_mode + 0x0000000000000000 0x26 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_configure + 0x0000000000000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_get_configuration + 0x0000000000000000 0x3e esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.27 0x0000000000000000 0xe2 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_get_cpu_freq + 0x0000000000000000 0x3e esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_init + 0x0000000000000000 0x1be esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_idle_hook + 0x0000000000000000 0x48 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.31 0x0000000000000000 0x2a esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x3c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x38 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x0000000000000000 0x34 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x0000000000000000 0x16 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x0000000000000000 0x14 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_cpu_freq_by_mode + 0x0000000000000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_mode_lock_counts + 0x0000000000000000 0x10 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .rodata.__func__.6879 + 0x0000000000000000 0x11 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .rodata.esp_pm_impl_init.str1.4 + 0x0000000000000000 0xc1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_config_changed + 0x0000000000000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_core_idle + 0x0000000000000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_is_switching + 0x0000000000000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_light_sleep_default_params_config_cb + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_mode_mask + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_periph_inform_out_light_sleep_overhead_cb + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sbss.s_rtos_lock_handle + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sdata.s_mode 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .sdata.s_new_mode + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_create + 0x0000000000000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_delete + 0x0000000000000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .iram1.24 0x0000000000000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .iram1.25 0x0000000000000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_dump_locks + 0x0000000000000000 0x6 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_info 0x0000000000000000 0xd4c esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_abbrev 0x0000000000000000 0x230 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_loc 0x0000000000000000 0xa5 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_line 0x0000000000000000 0x4cf esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_str 0x0000000000000000 0x892 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_frame 0x0000000000000000 0x60 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .iram1.0 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .iram1.1 0x0000000000000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .iram1.2 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .iram1.3 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr2 + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr2 + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_16b_wrsr + 0x0000000000000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr + 0x0000000000000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr + 0x0000000000000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_xmc25qu64a + 0x0000000000000000 0x62 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_xmc25qu64a + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.enable_qio_mode + 0x0000000000000000 0xcc esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x0000000000000000 0x154 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.4 + 0x0000000000000000 0x6f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.chip_data + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.enable_qio_mode.str1.4 + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x0000000000000000 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.1 0x0000000000000000 0x1cc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x0000000000000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x0000000000000000 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .sbss.map 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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.30 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.31 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x0000000000000000 0x40 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.4 + 0x0000000000000000 0x4e esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.32 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x0000000000000000 0x84 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.34 0x0000000000000000 0x74 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.35 0x0000000000000000 0xc0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_mmap_dump.str1.4 + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 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.31 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.38 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.39 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.40 0x0000000000000000 0x78 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.41 0x0000000000000000 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.28 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.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.31 0x0000000000000000 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.47 0x0000000000000000 0xae esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x0000000000000000 0x5e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x0000000000000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x0000000000000000 0xb0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.34 0x0000000000000000 0x94 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.35 0x0000000000000000 0x246 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.36 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.37 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x0000000000000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.38 0x0000000000000000 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.39 0x0000000000000000 0xe6 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.40 0x0000000000000000 0x132 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.41 0x0000000000000000 0x17c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.42 0x0000000000000000 0x196 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.44 0x0000000000000000 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.45 0x0000000000000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.46 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x0000000000000000 0xbc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x0000000000000000 0x2e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.48 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.49 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.50 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.51 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__.6850 + 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__.6922 + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__.6940 + 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x0000000000000000 0x8e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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) + .iram1.24 0x0000000000000000 0x142 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x0000000000000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x0000000000000000 0x1d4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__.7811 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x0000000000000000 0x122 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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) + .iram1.33 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.32 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.register_dev + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x0000000000000000 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x0000000000000000 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x0000000000000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x0000000000000000 0x24 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_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.4 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.6 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .dram1.0 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(partition.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_find_first + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_register_external + 0x0000000000000000 0x18e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x0000000000000000 0x7e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_verify + 0x0000000000000000 0xbe esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_write + 0x0000000000000000 0x84 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_read_raw + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_write_raw + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_erase_range + 0x0000000000000000 0x74 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_mmap + 0x0000000000000000 0x92 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_read + 0x0000000000000000 0xb6 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_get_sha256 + 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_check_identity + 0x0000000000000000 0x62 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4419 + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4589 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4602 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4612 + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4619 + 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4626 + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4632 + 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4641 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_register_external.str1.4 + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x0000000000000000 0x12 esp-idf/spi_flash/libspi_flash.a(partition.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) + COMMON 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.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) + .text._esp_error_check_failed_without_abort + 0x0000000000000000 0x24 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 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.29 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.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 0x14 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x0000000000000000 0x60 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x60 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.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(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.esp_task_wdt_deinit + 0x0000000000000000 0xae esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x0000000000000000 0xda esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x0000000000000000 0x64 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__.6504 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.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 0x44 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x0000000000000000 0x3a esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x0000000000000000 0x224e esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x31a esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x0000000000000000 0x15c 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 0x4c2 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x0000000000000000 0x16c7 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x0000000000000000 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/hal/libhal.a(gpio_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 0x42 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_sclk + 0x0000000000000000 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x0000000000000000 0x4a esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x0000000000000000 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0x66 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x0000000000000000 0x5c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x0000000000000000 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x0000000000000000 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x0000000000000000 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x0000000000000000 0x1a esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_thrd + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x0000000000000000 0xe esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x0000000000000000 0x120 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x0000000000000000 0xa esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x0000000000000000 0xb8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_init + 0x0000000000000000 0x11c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x0000000000000000 0x3e esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x0000000000000000 0x56 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x0000000000000000 0x1e 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) + .sdata.__compound_literal.0 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.1 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.10 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.11 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.2 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.3 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.4 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.5 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.6 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.7 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.8 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .sdata.__compound_literal.9 + 0x0000000000000000 0x4 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/hal/libhal.a(interrupt_controller_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .text.interrupt_controller_hal_desc_type + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x0000000000000000 0x1c esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x0000000000000000 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .text.rtc_cntl_hal_dma_link_init + 0x0000000000000000 0xe4 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .text.rtc_cntl_hal_enable_cpu_retention + 0x0000000000000000 0x4c esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .rodata.__func__.3127 + 0x0000000000000000 0x1b esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .rodata.rtc_cntl_hal_dma_link_init.str1.4 + 0x0000000000000000 0x73 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_info 0x0000000000000000 0x228e esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x314 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_loc 0x0000000000000000 0x1ee esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_line 0x0000000000000000 0x58a esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_str 0x0000000000000000 0x15ed esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/hal/libhal.a(rtc_cntl_hal.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 0x58 esp-idf/soc/libsoc.a(gpio_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 0x48 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x0000000000000000 0x3f0c esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x24d 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 0x380 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x0000000000000000 0x273d esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/soc/libsoc.a(spi_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 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_info 0x0000000000000000 0x214c esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x244 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 0x36f esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x0000000000000000 0x15f3 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.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) + .text 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.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) + .text.esp_err_to_name_r + 0x0000000000000000 0x8c 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 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 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x0000000000000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x0000000000000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x0000000000000000 0x110 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x0000000000000000 0x1aa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x0000000000000000 0x1c2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvAcquireItemNoSplit + 0x0000000000000000 0xe6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x0000000000000000 0x190 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x0000000000000000 0xc2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x0000000000000000 0x100 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x0000000000000000 0xb0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x0000000000000000 0x156 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x0000000000000000 0x124 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x0000000000000000 0xec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateStatic + 0x0000000000000000 0x10c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x0000000000000000 0x170 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x0000000000000000 0xbc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x0000000000000000 0xfc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x0000000000000000 0x5a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x0000000000000000 0xe4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0xe6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x0000000000000000 0x8c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x8a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x0000000000000000 0x8e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x0000000000000000 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x0000000000000000 0x2e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x0000000000000000 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x0000000000000000 0xb0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCanRead + 0x0000000000000000 0x36 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0xb0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x0000000000000000 0xa2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x0000000000000000 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4900 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4906 + 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4913 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4921 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4940 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4948 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4960 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4968 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4974 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.4984 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5028 + 0x0000000000000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5033 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5047 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5056 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5069 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5092 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5109 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5121 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5134 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5146 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5155 + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5170 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5175 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5180 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5185 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5192 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5200 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5206 + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5218 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5223 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x0000000000000000 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x0000000000000000 0x66 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) + .rodata.prvGetItemDefault.str1.4 + 0x0000000000000000 0x186 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) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x0000000000000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.4 + 0x0000000000000000 0xb5 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) + .rodata.xRingbufferCreateStatic.str1.4 + 0x0000000000000000 0x82 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) + .rodata.xRingbufferReceiveSplit.str1.4 + 0x0000000000000000 0x71 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 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.bus_uses_iomux_pins + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x0000000000000000 0x120 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_slave_dma_chan_alloc + 0x0000000000000000 0xae esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_slave_free_dma + 0x0000000000000000 0x66 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x0000000000000000 0x9e0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x0000000000000000 0x14a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x0000000000000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_main_set_lock + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x0000000000000000 0x362 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_free + 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.24 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.25 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.26 0x0000000000000000 0x2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.27 0x0000000000000000 0x2 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.s_mainbus + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__.7601 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__.7642 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__.7556 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__.7569 + 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__.7578 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__.7583 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__.7622 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x0000000000000000 0xaf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x0000000000000000 0x1bd esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x0000000000000000 0x32 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_alloc.str1.4 + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .sdata.bus_ctx + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .sdata.spi_periph_claimed + 0x0000000000000000 0x2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000000000 0x73bf esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x0000000000000000 0x4fc esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x0000000000000000 0x142f esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000000000 0x100 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x0000000000000000 0x274d esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x0000000000000000 0x3793 esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x0000000000000000 0x2f8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.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 0x70 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x0000000000000000 0xbe esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.47 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.48 0x0000000000000000 0xe esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.50 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.52 0x0000000000000000 0x12a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.53 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.54 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.55 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x0000000000000000 0x66 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.56 0x0000000000000000 0xf6 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.57 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.58 0x0000000000000000 0xa2 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.59 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.60 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .dram1.26 0x0000000000000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__.6428 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__.6438 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__.6458 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__func__.6360 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x0000000000000000 0x55 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xed esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_acquire_pair_handle + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_uninstall_group + 0x0000000000000000 0xc2 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_uninstall_pair + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_del_rx_channel + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_del_tx_channel + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_release_pair_handle + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_release_group_handle + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_acquire_group_handle + 0x0000000000000000 0xd8 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_install_tx_interrupt + 0x0000000000000000 0xe2 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_install_rx_interrupt + 0x0000000000000000 0xda esp-idf/driver/libdriver.a(gdma.c.obj) + .iram1.27 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(gdma.c.obj) + .iram1.26 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_new_channel + 0x0000000000000000 0x338 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_del_channel + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_get_channel_id + 0x0000000000000000 0x4e esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_connect + 0x0000000000000000 0x1c0 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_disconnect + 0x0000000000000000 0xd6 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_set_transfer_ability + 0x0000000000000000 0x124 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_apply_strategy + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_register_tx_event_callbacks + 0x0000000000000000 0x136 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_register_rx_event_callbacks + 0x0000000000000000 0x13a esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_start + 0x0000000000000000 0xe4 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_stop + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_append + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_reset + 0x0000000000000000 0xb4 esp-idf/driver/libdriver.a(gdma.c.obj) + .data.s_platform + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5253 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5268 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5276 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5285 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5293 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5303 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5314 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5324 + 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5339 + 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5353 + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5361 + 0x0000000000000000 0xa esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5369 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5377 + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5460 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__.5471 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__func__.5384 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__func__.5402 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_connect.str1.4 + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_disconnect.str1.4 + 0x0000000000000000 0x49 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_install_tx_interrupt.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_new_channel.str1.4 + 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_register_tx_event_callbacks.str1.4 + 0x0000000000000000 0x77 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_set_transfer_ability.str1.4 + 0x0000000000000000 0x3b esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_uninstall_group.str1.4 + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_uninstall_pair.str1.4 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_info 0x0000000000000000 0x4991 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_abbrev 0x0000000000000000 0x546 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_loc 0x0000000000000000 0x27b3 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_ranges 0x0000000000000000 0x1a8 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_line 0x0000000000000000 0x35bf esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_str 0x0000000000000000 0x1bd4 esp-idf/driver/libdriver.a(gdma.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_frame 0x0000000000000000 0x3dc esp-idf/driver/libdriver.a(gdma.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gdma.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 0x28 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x0000000000000000 0x84 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x0000000000000000 0xcc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x0000000000000000 0x68 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x0000000000000000 0x42 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x0000000000000000 0x3a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x0000000000000000 0xee esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x0000000000000000 0x1f8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x0000000000000000 0x124 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x0000000000000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x0000000000000000 0xa4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x0000000000000000 0x58 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x0000000000000000 0xc6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x0000000000000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x0000000000000000 0xb0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x0000000000000000 0x90 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x0000000000000000 0x52 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x0000000000000000 0xda esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x0000000000000000 0x140 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x72 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x0000000000000000 0xc0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0xec esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__.4996 + 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__.5030 + 0x0000000000000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__.5084 + 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x0000000000000000 0xd7 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) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x0000000000000000 0x4a 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) + .rodata.esp_ota_write.str1.4 + 0x0000000000000000 0xb0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x0000000000000000 0xc4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x0000000000000000 0x4e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .sbss.s_ota_ops_entries_head + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .sbss.s_ota_ops_last_handle + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0xb6 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) + .text.bootloader_common_label_search + 0x0000000000000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x0000000000000000 0x1a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_reset_reason + 0x0000000000000000 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x0000000000000000 0x10e 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) + .debug_info 0x0000000000000000 0x30cf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x0000000000000000 0x3ce esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000000 0x552 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x0000000000000000 0xe54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000000000000000 0x23d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000000 0x144 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x0000000000000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0xaa esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x0000000000000000 0xc2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_get_partition_description.str1.4 + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000000000000000 0x29da esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x0000000000000000 0x36c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x0000000000000000 0x441 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x0000000000000000 0xac5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x0000000000000000 0x1ee9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x0000000000000000 0x100 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x0000000000000000 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.read_otadata + 0x0000000000000000 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x0000000000000000 0x76 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x0000000000000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x0000000000000000 0x274 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x176 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x0000000000000000 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x0000000000000000 0x11c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x0000000000000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x0000000000000000 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x0000000000000000 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__.7387 + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_debug_buffer.str1.4 + 0x0000000000000000 0x4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x0000000000000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x0000000000000000 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x0000000000000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x0000000000000000 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x0000000000000000 0x3b 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) + .rodata.write_otadata.str1.4 + 0x0000000000000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .sbss.ota_has_initial_contents + 0x0000000000000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000000000 0x7bf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x558 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000000000000000 0xdb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000000 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x0000000000000000 0x1a0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000000000 0x22b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000000000000000 0x4c58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000000 0x27c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x0000000000000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash + 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x0000000000000000 0xec esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x0000000000000000 0xa2 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) + .text.process_segment_data + 0x0000000000000000 0xe6 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x0000000000000000 0x1cc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x0000000000000000 0xe0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x0000000000000000 0x9a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x0000000000000000 0x15e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x12 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x0000000000000000 0x82 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 0x2e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x0000000000000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x0000000000000000 0x45 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash.str1.4 + 0x0000000000000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x0000000000000000 0xd5 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x0000000000000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x0000000000000000 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0000000000000000 0x21ec esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000000 0x3e5 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000000000 0x1651 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 0xf0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000000000 0x1c9a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000000000000000 0x1349 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000000 0x31c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x0000000000000000 0x1da esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x0000000000000000 0x163 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x0000000000000000 0x10f0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000000000 0x277 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000000000 0x1d2 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 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000000000000000 0x88d esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000000000000000 0xa7c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .text.bootloader_common_get_chip_revision + 0x0000000000000000 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .text.bootloader_common_get_chip_ver_pkg + 0x0000000000000000 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_info 0x0000000000000000 0x9a5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_abbrev 0x0000000000000000 0x193 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_line 0x0000000000000000 0x354 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_str 0x0000000000000000 0x6a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .debug_frame 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.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 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x0000000000000000 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__.3752 + 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__.3759 + 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x0000000000000000 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x0000000000000000 0xebb esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000000000 0x250 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0000000000000000 0x214 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 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x0000000000000000 0x5da esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000000000000000 0x973 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .text.bootloader_random_enable + 0x0000000000000000 0x182 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .text.bootloader_random_disable + 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_info 0x0000000000000000 0xae5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_abbrev 0x0000000000000000 0x1e6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_line 0x0000000000000000 0x4bb esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_str 0x0000000000000000 0x727 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .debug_frame 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .text.gdma_hal_init + 0x0000000000000000 0x12 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_info 0x0000000000000000 0x19e8 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x26a esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_line 0x0000000000000000 0x393 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_str 0x0000000000000000 0xd1e esp-idf/hal/libhal.a(gdma_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_frame 0x0000000000000000 0x20 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_periph_signals + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_info 0x0000000000000000 0x32c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_abbrev 0x0000000000000000 0xac esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_line 0x0000000000000000 0xfd esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_str 0x0000000000000000 0xa57 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_exchange_1 + 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_exchange_2 + 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_exchange_4 + 0x0000000000000000 0x32 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_1 + 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_2 + 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_4 + 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_add_1 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_add_2 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_add_4 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_1 + 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_2 + 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_4 + 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_and_1 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_and_2 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_and_4 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_or_1 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_or_2 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_or_4 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_1 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_2 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_4 + 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_1 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_2 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_4 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_1 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_2 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_4 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_1 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_2 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_4 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_1 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_2 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_4 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_1 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_2 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_4 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_1 + 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_2 + 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_4 + 0x0000000000000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_1 + 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_2 + 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_4 + 0x0000000000000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_load_8 + 0x0000000000000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_store_8 + 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_exchange_8 + 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_8 + 0x0000000000000000 0x56 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_add_8 + 0x0000000000000000 0x52 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_8 + 0x0000000000000000 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_and_8 + 0x0000000000000000 0x4e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_or_8 + 0x0000000000000000 0x4e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_8 + 0x0000000000000000 0x4e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_8 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_8 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_8 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_8 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_8 + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_8 + 0x0000000000000000 0x54 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_8 + 0x0000000000000000 0x5c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_info 0x0000000000000000 0x2dee esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_abbrev 0x0000000000000000 0x2ed esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_loc 0x0000000000000000 0x226b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_aranges + 0x0000000000000000 0x1e8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_ranges 0x0000000000000000 0x1d8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_line 0x0000000000000000 0x19e6 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_str 0x0000000000000000 0xc4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .debug_frame 0x0000000000000000 0x8b4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.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_zeroize + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_init + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_free + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts_ret + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_process + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update_ret + 0x0000000000000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish_ret + 0x0000000000000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha256_padding + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x0000000000000000 0x10d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0000000000000000 0x2d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x0000000000000000 0x62d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x0000000000000000 0x9cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x0000000000000000 0x947 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x0000000000000000 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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_block_mode + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma_process + 0x0000000000000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_write_digest_state + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_read_digest_state + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_acquire_hardware + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_release_hardware + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma + 0x0000000000000000 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma.str1.4 + 0x0000000000000000 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma_process.str1.4 + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x0000000000000000 0x12e7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0000000000000000 0x3ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x0000000000000000 0x7f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x0000000000000000 0xc8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x0000000000000000 0xc60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .text.esp_sha_dma_start + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_info 0x0000000000000000 0xb1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_abbrev 0x0000000000000000 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_loc 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_line 0x0000000000000000 0x41a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_str 0x0000000000000000 0x7c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_frame 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.crypto_shared_gdma_init + 0x0000000000000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_start + 0x0000000000000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_free + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .rodata.crypto_shared_gdma_init.str1.4 + 0x0000000000000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .sbss.rx_channel + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .sbss.tx_channel + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_info 0x0000000000000000 0x203c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_abbrev 0x0000000000000000 0x3d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_loc 0x0000000000000000 0x19e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_line 0x0000000000000000 0x952 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_str 0x0000000000000000 0x11d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_frame 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.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.sha_hal_wait_idle + 0x0000000000000000 0xa esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_hash_block + 0x0000000000000000 0x66 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_hash_dma + 0x0000000000000000 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_read_digest + 0x0000000000000000 0x6a esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_write_digest + 0x0000000000000000 0x32 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x0000000000000000 0xf15 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x325 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x0000000000000000 0x402 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x0000000000000000 0x78 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x0000000000000000 0x6e7 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_str 0x0000000000000000 0x852 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x0000000000000000 0xb0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_acquire + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_hmac_lock_acquire + 0x0000000000000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_release + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_hmac_lock_release + 0x0000000000000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_acquire + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ds_lock_acquire + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_release + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_ds_lock_release + 0x0000000000000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_ds_lock + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_hmac_lock + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_mpi_lock + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .sbss.s_crypto_sha_aes_lock + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_info 0x0000000000000000 0x26b esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x0000000000000000 0xe5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x0000000000000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_ranges 0x0000000000000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_line 0x0000000000000000 0x291 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_str 0x0000000000000000 0x308 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_frame 0x0000000000000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text 0x0000000000000000 0x58 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_info 0x0000000000000000 0xbc6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_abbrev 0x0000000000000000 0x204 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_loc 0x0000000000000000 0x9f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_ranges 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_line 0x0000000000000000 0x427 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_str 0x0000000000000000 0x7e4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .rodata 0x0000000000000000 0x100 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .debug_info 0x0000000000000000 0xb41 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .debug_abbrev 0x0000000000000000 0x1aa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .debug_line 0x0000000000000000 0x353 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .debug_str 0x0000000000000000 0x7b8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_info 0x0000000000000000 0xbae /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_abbrev 0x0000000000000000 0x204 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_loc 0x0000000000000000 0x6b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_ranges 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_line 0x0000000000000000 0x3df /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_str 0x0000000000000000 0x7d5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + .text 0x0000000000000000 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_info 0x0000000000000000 0xb6d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_loc 0x0000000000000000 0xb8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_line 0x0000000000000000 0x3fd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_str 0x0000000000000000 0x7ce /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x64 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_info 0x0000000000000000 0xb6d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_loc 0x0000000000000000 0x28 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_line 0x0000000000000000 0x3d5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_str 0x0000000000000000 0x7ca /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + .text 0x0000000000000000 0x480 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x458 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .text 0x0000000000000000 0x434 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x410 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .text 0x0000000000000000 0x10 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_info 0x0000000000000000 0x988 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_abbrev 0x0000000000000000 0x1cf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_loc 0x0000000000000000 0x4d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_line 0x0000000000000000 0x203 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_str 0x0000000000000000 0x611 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .text 0x0000000000000000 0x9c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_info 0x0000000000000000 0xa77 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_abbrev 0x0000000000000000 0x20c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_loc 0x0000000000000000 0xbc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_line 0x0000000000000000 0x2c7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_str 0x0000000000000000 0x64e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .debug_frame 0x0000000000000000 0x4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + .text 0x0000000000000000 0x160 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_info 0x0000000000000000 0xdaf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_abbrev 0x0000000000000000 0x29f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_loc 0x0000000000000000 0x12d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_line 0x0000000000000000 0x431 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_str 0x0000000000000000 0x849 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .text 0x0000000000000000 0x1c8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_info 0x0000000000000000 0xdf7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_abbrev 0x0000000000000000 0x2bd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_loc 0x0000000000000000 0x24e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_ranges 0x0000000000000000 0x38 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_line 0x0000000000000000 0x46a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_str 0x0000000000000000 0x849 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .debug_frame 0x0000000000000000 0x64 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .sbss 0x0000000000000000 0x4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x921 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x169 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x113 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x5f5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + .text 0x0000000000000000 0x74 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_info 0x0000000000000000 0xa12 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_abbrev 0x0000000000000000 0x211 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_loc 0x0000000000000000 0x17a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_line 0x0000000000000000 0x2e4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_str 0x0000000000000000 0x624 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .debug_frame 0x0000000000000000 0x44 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + .text 0x0000000000000000 0x310 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_info 0x0000000000000000 0xc2e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_abbrev 0x0000000000000000 0x228 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_loc 0x0000000000000000 0x1a2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_line 0x0000000000000000 0x7c6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_str 0x0000000000000000 0x747 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .debug_frame 0x0000000000000000 0x44 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .text 0x0000000000000000 0x24 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_info 0x0000000000000000 0x9a1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_abbrev 0x0000000000000000 0x1cb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_loc 0x0000000000000000 0x83 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_line 0x0000000000000000 0x24d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_str 0x0000000000000000 0x615 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + .text 0x0000000000000000 0x64 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x9ba /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x1a9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_loc 0x0000000000000000 0x155 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x2ec /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0x605 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + .text 0x0000000000000000 0xd8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x105e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x22a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_loc 0x0000000000000000 0x2d3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x56f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0x949 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x5c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_info 0x0000000000000000 0xef2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_abbrev 0x0000000000000000 0x1cb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_loc 0x0000000000000000 0x1c1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_line 0x0000000000000000 0x320 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_str 0x0000000000000000 0x948 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + .text 0x0000000000000000 0xdc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x1ea /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0x114 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .rodata 0x0000000000000000 0x60 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .debug_info 0x0000000000000000 0x984 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .debug_abbrev 0x0000000000000000 0x182 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .debug_line 0x0000000000000000 0x1eb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .debug_str 0x0000000000000000 0x626 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .text 0x0000000000000000 0x52c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_info 0x0000000000000000 0x106a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_abbrev 0x0000000000000000 0x361 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_loc 0x0000000000000000 0x900 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_line 0x0000000000000000 0x96f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_str 0x0000000000000000 0x669 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .debug_frame 0x0000000000000000 0xa0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .text 0x0000000000000000 0x180 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_info 0x0000000000000000 0xd24 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_abbrev 0x0000000000000000 0x260 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_loc 0x0000000000000000 0x1bf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_line 0x0000000000000000 0x548 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_str 0x0000000000000000 0x7cc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .debug_frame 0x0000000000000000 0x64 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_info 0x0000000000000000 0x969 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_abbrev 0x0000000000000000 0x1a9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_loc 0x0000000000000000 0x49 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_line 0x0000000000000000 0x272 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_str 0x0000000000000000 0x5fe /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + .text 0x0000000000000000 0x17c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .debug_line 0x0000000000000000 0x196 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .debug_str 0x0000000000000000 0x114 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + .text 0x0000000000000000 0x88 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_info 0x0000000000000000 0xa87 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_abbrev 0x0000000000000000 0x23d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_loc 0x0000000000000000 0x21f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_ranges 0x0000000000000000 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_line 0x0000000000000000 0x521 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_str 0x0000000000000000 0x654 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x34 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0x979 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x1b3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_loc 0x0000000000000000 0x5d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0x2a3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0x607 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + .text 0x0000000000000000 0x8c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_info 0x0000000000000000 0xa35 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_abbrev 0x0000000000000000 0x225 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_loc 0x0000000000000000 0x11d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_line 0x0000000000000000 0x262 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_str 0x0000000000000000 0x65d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .debug_frame 0x0000000000000000 0x48 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x88 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_info 0x0000000000000000 0x9cc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_abbrev 0x0000000000000000 0x1df /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_loc 0x0000000000000000 0x1cc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_line 0x0000000000000000 0x33d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_str 0x0000000000000000 0x613 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .debug_frame 0x0000000000000000 0x34 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + .text 0x0000000000000000 0x5c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_info 0x0000000000000000 0x999 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_abbrev 0x0000000000000000 0x1b3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_loc 0x0000000000000000 0x199 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_line 0x0000000000000000 0x2ef /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_str 0x0000000000000000 0x607 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + .text 0x0000000000000000 0x8c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0xa4a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x23b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_loc 0x0000000000000000 0xfa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x509 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0x647 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x3c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_info 0x0000000000000000 0x96d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_abbrev 0x0000000000000000 0x191 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_loc 0x0000000000000000 0x111 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_line 0x0000000000000000 0x273 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_str 0x0000000000000000 0x607 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + .text 0x0000000000000000 0x38 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x999 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x1ba /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_loc 0x0000000000000000 0xad /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x28e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0x623 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0x97c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x1c4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_loc 0x0000000000000000 0x31 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x2d5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0x605 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + .text 0x0000000000000000 0x383c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .rodata 0x0000000000000000 0x2bc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .rodata.str1.4 + 0x0000000000000000 0x3a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .srodata.cst8 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_info 0x0000000000000000 0x2af0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x0000000000000000 0x414 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_loc 0x0000000000000000 0x39e5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_ranges 0x0000000000000000 0x120 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_line 0x0000000000000000 0x4754 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_str 0x0000000000000000 0xf1d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .debug_frame 0x0000000000000000 0xb8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .text 0x0000000000000000 0x1c0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_info 0x0000000000000000 0xb4d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_abbrev 0x0000000000000000 0x1fe /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_loc 0x0000000000000000 0x1ce /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_ranges 0x0000000000000000 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_line 0x0000000000000000 0x5ac /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_str 0x0000000000000000 0x6e6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .debug_frame 0x0000000000000000 0x48 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + .text 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .debug_info 0x0000000000000000 0x9ee /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .debug_abbrev 0x0000000000000000 0x1c3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .debug_line 0x0000000000000000 0x20e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .debug_str 0x0000000000000000 0x682 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .debug_frame 0x0000000000000000 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + .text 0x0000000000000000 0x50 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .debug_info 0x0000000000000000 0xa13 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .debug_abbrev 0x0000000000000000 0x1d2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .debug_line 0x0000000000000000 0x25f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .debug_str 0x0000000000000000 0x667 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .debug_frame 0x0000000000000000 0x48 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + .text 0x0000000000000000 0x52c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .bss 0x0000000000000000 0x17 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .rodata.str1.4 + 0x0000000000000000 0x53 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .sbss 0x0000000000000000 0x4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_info 0x0000000000000000 0xe6b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_abbrev 0x0000000000000000 0x254 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_loc 0x0000000000000000 0x1c8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_ranges 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_line 0x0000000000000000 0xafa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_str 0x0000000000000000 0x75c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .debug_frame 0x0000000000000000 0x74 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .rodata.str1.4 + 0x0000000000000000 0x4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .sbss 0x0000000000000000 0x8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .sdata 0x0000000000000000 0x8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .debug_info 0x0000000000000000 0x96b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .debug_abbrev 0x0000000000000000 0x17c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .debug_line 0x0000000000000000 0x169 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .debug_str 0x0000000000000000 0x60f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + .text 0x0000000000000000 0xd4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .rodata.str1.4 + 0x0000000000000000 0x25 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_info 0x0000000000000000 0xa65 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_abbrev 0x0000000000000000 0x231 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_loc 0x0000000000000000 0x1ae /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_line 0x0000000000000000 0x3f8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_str 0x0000000000000000 0x63f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .debug_frame 0x0000000000000000 0x4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .text 0x0000000000000000 0x128 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_info 0x0000000000000000 0xaa9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_abbrev 0x0000000000000000 0x20e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_loc 0x0000000000000000 0x157 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_line 0x0000000000000000 0x3d0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_str 0x0000000000000000 0x660 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .debug_frame 0x0000000000000000 0x6c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + .text 0x0000000000000000 0xc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .debug_info 0x0000000000000000 0xa75 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .debug_abbrev 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .debug_line 0x0000000000000000 0x220 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .debug_str 0x0000000000000000 0x6a2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + .text 0x0000000000000000 0x180 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_info 0x0000000000000000 0xb10 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_abbrev 0x0000000000000000 0x1f1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_loc 0x0000000000000000 0x1f6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_line 0x0000000000000000 0x57b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_str 0x0000000000000000 0x6b4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .text 0x0000000000000000 0x128 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_info 0x0000000000000000 0xce4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_abbrev 0x0000000000000000 0x23f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_loc 0x0000000000000000 0xc8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_line 0x0000000000000000 0x451 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_str 0x0000000000000000 0x7af /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .debug_frame 0x0000000000000000 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + .text 0x0000000000000000 0x480 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .rodata 0x0000000000000000 0x23c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .rodata.str1.4 + 0x0000000000000000 0x701 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_info 0x0000000000000000 0xaca /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_abbrev 0x0000000000000000 0x227 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_loc 0x0000000000000000 0xdfd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_line 0x0000000000000000 0xc95 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_str 0x0000000000000000 0x677 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .debug_frame 0x0000000000000000 0x68 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + .text 0x0000000000000000 0x1f8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_info 0x0000000000000000 0x11ce /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_abbrev 0x0000000000000000 0x2b2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_loc 0x0000000000000000 0x43c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_line 0x0000000000000000 0x6f5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_str 0x0000000000000000 0x9d0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .text 0x0000000000000000 0x2400 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .rodata 0x0000000000000000 0x22 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_info 0x0000000000000000 0x268b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_abbrev 0x0000000000000000 0x436 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_loc 0x0000000000000000 0x2370 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_ranges 0x0000000000000000 0x1b8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_line 0x0000000000000000 0x37b6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_str 0x0000000000000000 0xd30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .debug_frame 0x0000000000000000 0x110 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_info 0x0000000000000000 0x87 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_abbrev 0x0000000000000000 0x73 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_loc 0x0000000000000000 0x21 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_line 0x0000000000000000 0xc4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_str 0x0000000000000000 0x17f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + .text 0x0000000000000000 0x370 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_info 0x0000000000000000 0xe33 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_abbrev 0x0000000000000000 0x31a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_loc 0x0000000000000000 0x215 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_ranges 0x0000000000000000 0x50 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_line 0x0000000000000000 0x824 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_str 0x0000000000000000 0x82a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .debug_frame 0x0000000000000000 0x94 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .text 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_info 0x0000000000000000 0x9ae /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_abbrev 0x0000000000000000 0x1d4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_loc 0x0000000000000000 0x42 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_line 0x0000000000000000 0x209 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_str 0x0000000000000000 0x687 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .debug_frame 0x0000000000000000 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + .text 0x0000000000000000 0xc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_info 0x0000000000000000 0xc4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_abbrev 0x0000000000000000 0x95 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_loc 0x0000000000000000 0x21 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_line 0x0000000000000000 0x191 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_str 0x0000000000000000 0x1f1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + .text 0x0000000000000000 0x28 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_info 0x0000000000000000 0xed5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_abbrev 0x0000000000000000 0x1ba /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_loc 0x0000000000000000 0x3a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_line 0x0000000000000000 0x2d5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_str 0x0000000000000000 0x92f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + .text 0x0000000000000000 0xc8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .sbss 0x0000000000000000 0x4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .text 0x0000000000000000 0xb4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .rodata.str1.4 + 0x0000000000000000 0x1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_info 0x0000000000000000 0x1034 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x0000000000000000 0x23f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_loc 0x0000000000000000 0x192 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_line 0x0000000000000000 0x397 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_str 0x0000000000000000 0x9a7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .debug_frame 0x0000000000000000 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .text 0x0000000000000000 0xb0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_info 0x0000000000000000 0xbc7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_abbrev 0x0000000000000000 0x1eb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_loc 0x0000000000000000 0x16e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_ranges 0x0000000000000000 0x10 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_line 0x0000000000000000 0x3e2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_str 0x0000000000000000 0x761 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + .text 0x0000000000000000 0x234 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_info 0x0000000000000000 0x1245 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_abbrev 0x0000000000000000 0x2ef /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_loc 0x0000000000000000 0x56a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_ranges 0x0000000000000000 0x28 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_line 0x0000000000000000 0x799 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_str 0x0000000000000000 0x9d3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .debug_frame 0x0000000000000000 0x7c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + .text 0x0000000000000000 0x2f8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_info 0x0000000000000000 0x11d2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_abbrev 0x0000000000000000 0x2d0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_loc 0x0000000000000000 0x544 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_line 0x0000000000000000 0x739 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_str 0x0000000000000000 0x9d0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .debug_frame 0x0000000000000000 0xb0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + .text 0x0000000000000000 0x2e0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_info 0x0000000000000000 0x11d2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_abbrev 0x0000000000000000 0x2d0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_loc 0x0000000000000000 0x548 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_line 0x0000000000000000 0x726 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_str 0x0000000000000000 0x9d5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .debug_frame 0x0000000000000000 0xac /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .text 0x0000000000000000 0x7e4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_info 0x0000000000000000 0x59d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_abbrev 0x0000000000000000 0x196 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_loc 0x0000000000000000 0x1207 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_ranges 0x0000000000000000 0x240 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_line 0x0000000000000000 0x10bf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_str 0x0000000000000000 0x360 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .debug_frame 0x0000000000000000 0x44 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + .text 0x0000000000000000 0x6f0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .rodata 0x0000000000000000 0x3c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_info 0x0000000000000000 0x734 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_abbrev 0x0000000000000000 0x187 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_loc 0x0000000000000000 0x129d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_ranges 0x0000000000000000 0x180 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_line 0x0000000000000000 0x100f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_str 0x0000000000000000 0x422 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .debug_frame 0x0000000000000000 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + .text 0x0000000000000000 0x8c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_info 0x0000000000000000 0x288 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_abbrev 0x0000000000000000 0x186 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_loc 0x0000000000000000 0xa4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_ranges 0x0000000000000000 0x48 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_line 0x0000000000000000 0x302 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_str 0x0000000000000000 0x27a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + .text 0x0000000000000000 0xe4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_info 0x0000000000000000 0x286 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_abbrev 0x0000000000000000 0x199 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_loc 0x0000000000000000 0x156 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_ranges 0x0000000000000000 0x68 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_line 0x0000000000000000 0x3a3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_str 0x0000000000000000 0x29e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + .text 0x0000000000000000 0xe4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_info 0x0000000000000000 0x286 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_abbrev 0x0000000000000000 0x199 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_loc 0x0000000000000000 0x156 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_ranges 0x0000000000000000 0x68 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_line 0x0000000000000000 0x3a3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_str 0x0000000000000000 0x29e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + .text 0x0000000000000000 0x5e0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .rodata 0x0000000000000000 0x3c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_info 0x0000000000000000 0x76c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_abbrev 0x0000000000000000 0x197 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_loc 0x0000000000000000 0xd74 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_ranges 0x0000000000000000 0x1c0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_line 0x0000000000000000 0xe30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_str 0x0000000000000000 0x47a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .debug_frame 0x0000000000000000 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + .text 0x0000000000000000 0x7e8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_info 0x0000000000000000 0x59d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_abbrev 0x0000000000000000 0x196 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_loc 0x0000000000000000 0x1221 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_ranges 0x0000000000000000 0x218 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_line 0x0000000000000000 0x1110 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_str 0x0000000000000000 0x360 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .debug_frame 0x0000000000000000 0x44 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_info 0x0000000000000000 0x289 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_abbrev 0x0000000000000000 0x1a2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_loc 0x0000000000000000 0x8c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_ranges 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_line 0x0000000000000000 0x24d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_str 0x0000000000000000 0x280 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + .text 0x0000000000000000 0x80 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_info 0x0000000000000000 0x217 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_abbrev 0x0000000000000000 0x18a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_loc 0x0000000000000000 0x15f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_line 0x0000000000000000 0x2b9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_str 0x0000000000000000 0x277 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .debug_frame 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + .text 0x0000000000000000 0xcc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_info 0x0000000000000000 0x2bc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_abbrev 0x0000000000000000 0x178 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_loc 0x0000000000000000 0x13f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_ranges 0x0000000000000000 0x68 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_line 0x0000000000000000 0x2fd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_str 0x0000000000000000 0x30d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .debug_frame 0x0000000000000000 0x38 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + .text 0x0000000000000000 0xa4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_info 0x0000000000000000 0x2af /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_abbrev 0x0000000000000000 0x178 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_loc 0x0000000000000000 0x15c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_ranges 0x0000000000000000 0x68 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_line 0x0000000000000000 0x2fb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_str 0x0000000000000000 0x30a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .debug_frame 0x0000000000000000 0x34 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .riscv.attributes + 0x0000000000000000 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x0000000040380000 0x0000000000050000 xr +iram0_2_seg 0x0000000042000020 0x00000000007fffe0 xr +dram0_0_seg 0x000000003fc80000 0x0000000000050000 rw +drom0_0_seg 0x000000003c000020 0x00000000007fffe0 r +rtc_iram_seg 0x0000000050000000 0x0000000000002000 xrw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD CMakeFiles/hello-world.elf.dir/project_elf_src_esp32c3.c.obj +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc_cal/libesp_adc_cal.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/mdns/libmdns.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/esp_adc_cal/libesp_adc_cal.a +LOAD esp-idf/esp_hid/libesp_hid.a +LOAD esp-idf/esp_lcd/libesp_lcd.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.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/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.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/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.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/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.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/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.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/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/riscv/libriscv.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.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/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32c3\libphy.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32c3\libphy.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32c3\libphy.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32c3\libbtbb.a +LOAD esp-idf/newlib/libnewlib.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcov.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcov.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libstdc++.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libm.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a +START GROUP +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a +END GROUP +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a +START GROUP +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a +LOAD /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libnosys.a +END GROUP + 0x000000003fc8be10 _static_data_end = _bss_end + 0x0000000040000000 _heap_end = 0x40000000 + 0x0000000050000000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x0000000000000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x0000000050000000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_dummy_start = ABSOLUTE (.) + 0x0000000050000000 _rtc_fast_start = ABSOLUTE (.) + 0x0000000000000000 . = SIZEOF (.rtc.text) + 0x0000000050000000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_fast_start = ABSOLUTE (.) + 0x0000000050000000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x0000000050000000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x0000000050000000 0x10 + 0x0000000050000000 _rtc_data_start = ABSOLUTE (.) + 0x0000000050000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x0000000050000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + .rtc.data.0 0x0000000050000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) + 0x0000000050000010 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x0000000050000010 0x0 + 0x0000000050000010 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x0000000050000010 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x0000000050000010 0x0 + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x0000000050000010 0x0 + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_force_slow_end = ABSOLUTE (.) + 0x0000000000000010 _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.text 0x0000000040380000 0x9b4a + 0x0000000040380000 _iram_start = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((ABSOLUTE (.) % 0x100) == 0x0), vector address must be 256 byte aligned) + *(.exception_vectors.text) + .exception_vectors.text + 0x0000000040380000 0x20a esp-idf/riscv/libriscv.a(vectors.S.obj) + 0x0000000040380000 _vector_table + 0x0000000040380104 _interrupt_handler + 0x000000004038020c . = ALIGN (0x4) + *fill* 0x000000004038020a 0x2 + 0x000000004038020c _invalid_pc_placeholder = ABSOLUTE (.) + 0x000000004038020c _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.1 0x000000004038020c 0xc6 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000004038020c esp_ota_get_app_elf_sha256 + .iram1.37 0x00000000403802d2 0x1d0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x00000000403802d2 call_start_cpu0 + .iram1.0 0x00000000403804a2 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x00000000403804a2 esp_cache_err_get_cpuid + .iram1.40 0x00000000403804a6 0x22 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x00000000403804a6 esp_restart_noos_dig + .iram1.41 0x00000000403804c8 0x2c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x00000000403804c8 esp_restart + .iram1.27 0x00000000403804f4 0x2c esp-idf/esp_system/libesp_system.a(startup.c.obj) + .iram1.3 0x0000000040380520 0x12a esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x0000000040380520 esp_restart_noos + .iram1.25 0x000000004038064a 0x1a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .iram1.24 0x0000000040380664 0x1a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .iram1.3 0x000000004038067e 0x2 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000004038067e esp_reset_reason_set_hint + .iram1.4 0x0000000040380680 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040380680 esp_reset_reason_get_hint + .iram1.36 0x0000000040380684 0x16 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .iram1.37 0x000000004038069a 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000004038069a panicHandler + .iram1.38 0x00000000403806b8 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x00000000403806b8 xt_unhandled_exception + .iram1.0 0x00000000403806d6 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x00000000403806d6 esp_rom_uart_set_clock_baudrate + .iram1.32 0x00000000403806ee 0x22 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.25 0x0000000040380710 0xd4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.26 0x00000000403807e4 0xfe esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000403807e4 heap_caps_malloc + .iram1.27 0x00000000403808e2 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000403808e2 heap_caps_malloc_default + .iram1.33 0x0000000040380926 0x58 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000040380926 heap_caps_free + .iram1.34 0x000000004038097e 0x184 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x000000004038097e heap_caps_realloc + .iram1.28 0x0000000040380b02 0x4e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000040380b02 heap_caps_realloc_default + .iram1.5 0x0000000040380b50 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x0000000040380b50 esp_cpu_reset + .iram1.8 0x0000000040380b5e 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x0000000040380b5e esp_cpu_in_ocd_debug_mode + .iram1.2 0x0000000040380b6c 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x0000000040380b6c esp_clk_cpu_freq + .iram1.26 0x0000000040380b8a 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.30 0x0000000040380bc4 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000040380bc4 esp_intr_noniram_disable + .iram1.31 0x0000000040380c42 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000040380c42 esp_intr_noniram_enable + .iram1.28 0x0000000040380ca0 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000040380ca0 esp_intr_enable + .iram1.29 0x0000000040380d3c 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000040380d3c esp_intr_disable + .iram1.27 0x0000000040380e3a 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x0000000040380e3a regi2c_ctrl_read_reg_mask + .iram1.28 0x0000000040380e80 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x0000000040380e80 regi2c_ctrl_write_reg + .iram1.29 0x0000000040380eba 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x0000000040380eba regi2c_ctrl_write_reg_mask + .iram1.0 0x0000000040380f04 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000040380f04 esp_memprot_intr_get_cpuid + .iram1.2 0x0000000040380f08 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000040380f08 esp_memprot_get_active_intr_memtype + .iram1.1 0x0000000040380f22 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000040380f22 esp_memprot_monitor_clear_intr + .iram1.6 0x0000000040380fa6 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000040380fa6 esp_memprot_get_violate_addr + .iram1.7 0x0000000040381030 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000040381030 esp_memprot_get_violate_world + .iram1.8 0x00000000403810a4 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x00000000403810a4 esp_memprot_get_violate_wr + .iram1.9 0x000000004038110a 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004038110a esp_memprot_get_violate_loadstore + .iram1.10 0x000000004038115e 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004038115e esp_memprot_get_violate_byte_en + .iram1.3 0x00000000403811b2 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x00000000403811b2 esp_memprot_is_locked_any + .iram1.32 0x0000000040381208 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.29 0x0000000040381222 0xcc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.33 0x00000000403812ee 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.34 0x0000000040381308 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.3 0x0000000040381330 0x26 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x0000000040381330 esp_system_get_time + .iram1.28 0x0000000040381356 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.25 0x000000004038137a 0x32 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x000000004038137a esp_timer_get_time + 0x000000004038137a esp_timer_impl_get_time + .iram1.26 0x00000000403813ac 0x7c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x00000000403813ac esp_timer_impl_set_alarm_id + .iram1.26 0x0000000040381428 0x72 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x0000000040381428 SysTickIsrHandler + .iram1.26 0x000000004038149a 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.42 0x00000000403814cc 0x2c esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.30 0x00000000403814f8 0xd2 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.35 0x00000000403815ca 0x8a esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.29 0x0000000040381654 0x56 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040381654 _lock_close_recursive + 0x0000000040381654 _lock_close + .iram1.31 0x00000000403816aa 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403816aa _lock_acquire + .iram1.32 0x00000000403816ba 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403816ba _lock_acquire_recursive + .iram1.33 0x00000000403816ca 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403816ca _lock_try_acquire + .iram1.34 0x00000000403816da 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403816da _lock_try_acquire_recursive + .iram1.36 0x00000000403816ea 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403816ea _lock_release + .iram1.37 0x00000000403816f8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403816f8 _lock_release_recursive + .iram1.38 0x0000000040381706 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040381706 __retarget_lock_init + .iram1.39 0x0000000040381718 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040381718 __retarget_lock_init_recursive + .iram1.40 0x000000004038172a 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004038172a __retarget_lock_close + .iram1.41 0x000000004038173a 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004038173a __retarget_lock_close_recursive + .iram1.43 0x000000004038174a 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004038174a __retarget_lock_acquire + .iram1.44 0x000000004038177c 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004038177c __retarget_lock_acquire_recursive + .iram1.45 0x00000000403817ae 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403817ae __retarget_lock_try_acquire + .iram1.46 0x00000000403817e0 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403817e0 __retarget_lock_try_acquire_recursive + .iram1.47 0x0000000040381812 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040381812 __retarget_lock_release + .iram1.48 0x0000000040381824 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040381824 __retarget_lock_release_recursive + .iram1.0 0x0000000040381836 0x4c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x0000000040381836 esp_reent_init + .iram1.27 0x0000000040381882 0x74 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x0000000040381882 _gettimeofday_r + .iram1.26 0x00000000403818f6 0x40 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000403818f6 _times_r + .iram1.2 0x0000000040381936 0x154 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040381936 bootloader_execute_flash_command + .iram1.32 0x0000000040381a8a 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.33 0x0000000040381aa6 0x16 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.28 0x0000000040381abc 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040381abc spi_flash_disable_interrupts_caches_and_other_cpu + .iram1.29 0x0000000040381ade 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040381ade spi_flash_enable_interrupts_caches_and_other_cpu + .iram1.34 0x0000000040381b00 0xa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040381b00 spi_flash_cache_enabled + .iram1.36 0x0000000040381b0a 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040381b0a spi_flash_enable_cache + .iram1.33 0x0000000040381b1a 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.27 0x0000000040381b3a 0x82 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.28 0x0000000040381bbc 0x7a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.36 0x0000000040381c36 0xbc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.30 0x0000000040381cf2 0x232 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000040381cf2 spi_flash_mmap_pages + .iram1.29 0x0000000040381f24 0xa8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000040381f24 spi_flash_mmap + .iram1.31 0x0000000040381fcc 0xd6 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000040381fcc spi_flash_munmap + .iram1.37 0x00000000403820a2 0x72 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x00000000403820a2 spi_flash_check_and_flush_cache + .iram1.37 0x0000000040382114 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.29 0x0000000040382124 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040382124 esp_mspi_pin_init + .iram1.30 0x0000000040382126 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040382126 spi_flash_guard_set + .iram1.32 0x0000000040382130 0xc esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040382130 spi_flash_get_chip_size + .iram1.26 0x000000004038213c 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27 0x0000000040382164 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.28 0x0000000040382186 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.32 0x00000000403821da 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.30 0x0000000040382280 0x7e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.33 0x00000000403822fe 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x00000000403822fe esp_flash_get_size + .iram1.29 0x0000000040382366 0x19e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040382366 esp_flash_init + .iram1.30 0x0000000040382504 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.31 0x0000000040382516 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.34 0x0000000040382526 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.40 0x0000000040382536 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.39 0x0000000040382546 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.38 0x00000000403825ae 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.37 0x00000000403825c4 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.35 0x00000000403825e2 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.36 0x00000000403825fe 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.41 0x0000000040382678 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000403826a2 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.2 0x00000000403826b8 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.1 0x00000000403826dc 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.26 0x00000000403826f8 0x34 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.27 0x000000004038272c 0x60 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.28 0x000000004038278c 0xe esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x000000004038278c esp_crosscore_int_send_yield + .iram1.24 0x000000004038279a 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x000000004038279a esp_vApplicationTickHook + .iram1.26 0x00000000403827ca 0x4a esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.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_util.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + .text.rtc_clk_bbpll_disable + 0x0000000040382814 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_enable + 0x000000004038282a 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_internal + 0x0000000040382838 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382838 rtc_clk_32k_enable_internal + .text.rtc_clk_32k_enable + 0x000000004038289a 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004038289a rtc_clk_32k_enable + .text.rtc_clk_32k_enable_external + 0x00000000403828c6 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403828c6 rtc_clk_32k_enable_external + .text.rtc_clk_8m_enable + 0x00000000403828d8 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403828d8 rtc_clk_8m_enable + .text.rtc_clk_slow_freq_set + 0x000000004038294c 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004038294c rtc_clk_slow_freq_set + .text.rtc_clk_slow_freq_get + 0x00000000403829b4 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403829b4 rtc_clk_slow_freq_get + .text.rtc_clk_slow_freq_get_hz + 0x00000000403829be 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403829be rtc_clk_slow_freq_get_hz + .text.rtc_clk_fast_freq_set + 0x00000000403829f0 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x00000000403829f0 rtc_clk_fast_freq_set + .text.rtc_clk_bbpll_configure + 0x0000000040382a1e 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382a1e rtc_clk_bbpll_configure + .text.rtc_clk_xtal_freq_get + 0x0000000040382b5e 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382b5e rtc_clk_xtal_freq_get + 0x0000000040382b5e rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040382bc4 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382bc4 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x0000000040382c2c 0xde esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382c2c rtc_clk_cpu_freq_get_config + .text.rtc_clk_apb_freq_update + 0x0000000040382d0a 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382d0a rtc_clk_apb_freq_update + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040382d20 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_8m + 0x0000000040382d9e 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_xtal + 0x0000000040382ddc 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382ddc rtc_clk_cpu_freq_to_xtal + .text.rtc_clk_cpu_freq_set_config + 0x0000000040382e30 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382e30 rtc_clk_cpu_freq_set_config + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000040382e9c 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382e9c rtc_clk_cpu_freq_set_xtal + .text.rtc_clk_apb_freq_get + 0x0000000040382eb2 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040382eb2 rtc_clk_apb_freq_get + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + .text.rtc_sleep_pu + 0x0000000040382ede 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x0000000040382ede rtc_sleep_pu + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x0000000040383012 0x1b8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x0000000040383012 rtc_clk_cal_internal + .text.rtc_clk_cal + 0x00000000403831ca 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x00000000403831ca rtc_clk_cal + .text.rtc_time_us_to_slowclk + 0x000000004038322e 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x000000004038322e rtc_time_us_to_slowclk + .text.rtc_time_get + 0x000000004038324c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x000000004038324c rtc_time_get + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + .text.prvCheckItemAvail + 0x0000000040383260 0x36 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetFreeSize + 0x0000000040383296 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGeneric + 0x00000000403832e0 0x16a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSend + 0x000000004038344a 0x12a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004038344a xRingbufferSend + .text.xRingbufferReceive + 0x0000000040383574 0x58 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040383574 xRingbufferReceive + .text.vRingbufferReturnItem + 0x00000000403835cc 0x80 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x00000000403835cc vRingbufferReturnItem + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + .text.esp_error_check_failed_print + 0x000000004038364c 0x82 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed + 0x00000000403836ce 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x00000000403836ce _esp_error_check_failed + *libesp_system.a:esp_system.*(.literal.esp_system_abort .text.esp_system_abort) + .text.esp_system_abort + 0x00000000403836e6 0xc esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x00000000403836e6 esp_system_abort + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x00000000403836f2 0x2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x00000000403836f2 __ubsan_include + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .literal EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .literal.* EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .text EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .text.*) + .text 0x00000000403836f4 0x9a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x00000000403836f4 rtos_int_enter + 0x0000000040383730 rtos_int_exit + .text.vPortSetupTimer + 0x000000004038378e 0xe2 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x000000004038378e vPortSetupTimer + .text.xPortSysTickHandler + 0x0000000040383870 0x1e esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x0000000040383870 xPortSysTickHandler + .text.prvGetDisinheritPriorityAfterTimeout + 0x000000004038388e 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvIsQueueFull + 0x000000004038389e 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvIsQueueEmpty + 0x00000000403838ae 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataToQueue + 0x00000000403838d2 0x96 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvNotifyQueueSetContainer + 0x0000000040383968 0xcc esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvCopyDataFromQueue + 0x0000000040383a34 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvUnlockQueue + 0x0000000040383a62 0x94 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericReset + 0x0000000040383af6 0xa6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383af6 xQueueGenericReset + .text.prvInitialiseNewQueue + 0x0000000040383b9c 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericCreateStatic + 0x0000000040383bc4 0xf0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383bc4 xQueueGenericCreateStatic + .text.xQueueGenericCreate + 0x0000000040383cb4 0xca esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383cb4 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x0000000040383d7e 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383d7e xQueueGetMutexHolder + .text.xQueueGenericSend + 0x0000000040383da2 0x202 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383da2 xQueueGenericSend + .text.prvInitialiseMutex + 0x0000000040383fa4 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateMutex + 0x0000000040383fd8 0x20 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383fd8 xQueueCreateMutex + .text.xQueueCreateMutexStatic + 0x0000000040383ff8 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040383ff8 xQueueCreateMutexStatic + .text.xQueueGiveMutexRecursive + 0x000000004038401c 0x68 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x000000004038401c xQueueGiveMutexRecursive + .text.xQueueGiveFromISR + 0x0000000040384084 0x110 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040384084 xQueueGiveFromISR + .text.xQueueSemaphoreTake + 0x0000000040384194 0x1da esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040384194 xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x000000004038436e 0x70 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x000000004038436e xQueueTakeMutexRecursive + .text.xQueueReceiveFromISR + 0x00000000403843de 0xec esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000403843de xQueueReceiveFromISR + .text.vQueueDelete + 0x00000000403844ca 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000403844ca vQueueDelete + .text.prvResetNextTaskUnblockTime + 0x0000000040384506 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTLS + 0x0000000040384536 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvInitialiseNewTask + 0x0000000040384596 0xf8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvInitialiseTaskLists + 0x000000004038468e 0x8a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvAddNewTaskToReadyList + 0x0000000040384718 0xe4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTCB + 0x00000000403847fc 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvCheckTasksWaitingTermination + 0x0000000040384864 0xaa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvAddCurrentTaskToDelayedList + 0x000000004038490e 0xc2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvIdleTask + 0x00000000403849d0 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.taskYIELD_OTHER_CORE + 0x00000000403849e2 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403849e2 taskYIELD_OTHER_CORE + .text.xTaskCreatePinnedToCore + 0x0000000040384a3c 0x8c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384a3c xTaskCreatePinnedToCore + .text.vTaskDelay + 0x0000000040384ac8 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384ac8 vTaskDelay + .text.vTaskSuspendAll + 0x0000000040384b1c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384b1c vTaskSuspendAll + .text.xTaskGetTickCount + 0x0000000040384b3c 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384b3c xTaskGetTickCount + .text.xTaskGetTickCountFromISR + 0x0000000040384b46 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384b46 xTaskGetTickCountFromISR + .text.pcTaskGetName + 0x0000000040384b66 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384b66 pcTaskGetName + .text.xTaskGetIdleTaskHandleForCPU + 0x0000000040384ba4 0x6a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384ba4 xTaskGetIdleTaskHandleForCPU + .text.xTaskIncrementTick + 0x0000000040384c0e 0x192 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384c0e xTaskIncrementTick + .text.xTaskResumeAll + 0x0000000040384da0 0x1c4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384da0 xTaskResumeAll + .text.vTaskSwitchContext + 0x0000000040384f64 0x26e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040384f64 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x00000000403851d2 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403851d2 vTaskPlaceOnEventList + .text.xTaskRemoveFromEventList + 0x0000000040385230 0x144 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385230 xTaskRemoveFromEventList + .text.vTaskInternalSetTimeOutState + 0x0000000040385374 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385374 vTaskInternalSetTimeOutState + .text.xTaskCheckForTimeOut + 0x000000004038538a 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004038538a xTaskCheckForTimeOut + .text.vTaskMissedYield + 0x0000000040385448 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385448 vTaskMissedYield + .text.xTaskGetAffinity + 0x0000000040385454 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385454 xTaskGetAffinity + .text.xTaskGetCurrentTaskHandle + 0x0000000040385464 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385464 xTaskGetCurrentTaskHandle + .text.__getreent + 0x0000000040385484 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385484 __getreent + .text.xTaskGetCurrentTaskHandleForCPU + 0x00000000403854a2 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403854a2 xTaskGetCurrentTaskHandleForCPU + .text.xTaskGetSchedulerState + 0x00000000403854ba 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403854ba xTaskGetSchedulerState + .text.vTaskDelete + 0x00000000403854da 0xce esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403854da vTaskDelete + .text.xTaskPriorityInherit + 0x00000000403855a8 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403855a8 xTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x0000000040385672 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385672 xTaskPriorityDisinherit + .text.vTaskPriorityDisinheritAfterTimeout + 0x000000004038574a 0xee esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004038574a vTaskPriorityDisinheritAfterTimeout + .text.pvTaskIncrementMutexHeldCount + 0x0000000040385838 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385838 pvTaskIncrementMutexHeldCount + .text.ulTaskNotifyTake + 0x000000004038586c 0x84 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004038586c ulTaskNotifyTake + .text.vTaskNotifyGiveFromISR + 0x00000000403858f0 0x110 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000403858f0 vTaskNotifyGiveFromISR + .text.xTimerCreateTimerTask + 0x0000000040385a00 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385a00 xTimerCreateTimerTask + .text.vTaskStartScheduler + 0x0000000040385a04 0xb2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040385a04 vTaskStartScheduler + .text.vListInitialise + 0x0000000040385ab6 0x14 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040385ab6 vListInitialise + .text.vListInitialiseItem + 0x0000000040385aca 0x6 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040385aca vListInitialiseItem + .text.vListInsertEnd + 0x0000000040385ad0 0x16 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040385ad0 vListInsertEnd + .text.vListInsert + 0x0000000040385ae6 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040385ae6 vListInsert + .text.uxListRemove + 0x0000000040385b16 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040385b16 uxListRemove + *libfreertos.a:port.*(.text .text.prvTaskExitError .text.pxPortInitialiseStack .text.vApplicationStackOverflowHook .text.vPortCPUAcquireMutex .text.vPortCPUAcquireMutexTimeout .text.vPortCPUInitializeMutex .text.vPortCPUReleaseMutex .text.vPortClearInterruptMask .text.vPortEndScheduler .text.vPortEnterCritical .text.vPortExitCritical .text.vPortSetInterruptMask .text.vPortSetStackWatchpoint .text.vPortYield .text.vPortYieldFromISR .text.vPortYieldOtherCore .text.xPortGetTickRateHz .text.xPortInIsrContext .text.xPortStartScheduler) + .text.vPortClearInterruptMask + 0x0000000040385b3c 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385b3c vPortClearInterruptMask + .text.vPortExitCritical + 0x0000000040385b4c 0x2e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385b4c vPortExitCritical + .text.vPortSetInterruptMask + 0x0000000040385b7a 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385b7a vPortSetInterruptMask + .text.vPortEnterCritical + 0x0000000040385b94 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385b94 vPortEnterCritical + .text.prvTaskExitError + 0x0000000040385bc0 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .text.pxPortInitialiseStack + 0x0000000040385bfc 0x90 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385bfc pxPortInitialiseStack + .text.vPortYieldOtherCore + 0x0000000040385c8c 0xe esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385c8c vPortYieldOtherCore + .text.vPortYieldFromISR + 0x0000000040385c9a 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385c9a vPortYieldFromISR + .text.vPortYield + 0x0000000040385cae 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385cae vPortYield + .text.xPortStartScheduler + 0x0000000040385cea 0x3a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385cea xPortStartScheduler + .text.xPortInIsrContext + 0x0000000040385d24 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385d24 xPortInIsrContext + .text.vPortCPUInitializeMutex + 0x0000000040385d2e 0x2 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385d2e vPortCPUInitializeMutex + .text.vPortCPUAcquireMutex + 0x0000000040385d30 0x2 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385d30 vPortCPUAcquireMutex + .text.vPortCPUReleaseMutex + 0x0000000040385d32 0x2 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385d32 vPortCPUReleaseMutex + .text.vApplicationStackOverflowHook + 0x0000000040385d34 0x54 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040385d34 vApplicationStackOverflowHook + *libfreertos.a:port_common.*(.text .text.esp_startup_start_app_common) + .text.esp_startup_start_app_common + 0x0000000040385d88 0x68 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x0000000040385d88 esp_startup_start_app_common + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cpu_hal.*(.literal .literal.* .text .text.*) + .text.cpu_hal_set_breakpoint + 0x0000000040385df0 0x16 esp-idf/hal/libhal.a(cpu_hal.c.obj) + 0x0000000040385df0 cpu_hal_set_breakpoint + .text.cpu_hal_set_vecbase + 0x0000000040385e06 0xa esp-idf/hal/libhal.a(cpu_hal.c.obj) + 0x0000000040385e06 cpu_hal_set_vecbase + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:soc_hal.*(.literal .literal.* .text .text.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_encryption_hal_enable + 0x0000000040385e10 0x16 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040385e10 spi_flash_encryption_hal_enable + .text.spi_flash_encryption_hal_disable + 0x0000000040385e26 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040385e26 spi_flash_encryption_hal_disable + .text.spi_flash_encryption_hal_prepare + 0x0000000040385e32 0x2c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040385e32 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x0000000040385e5e 0x22 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040385e5e spi_flash_encryption_hal_done + .text.spi_flash_encryption_hal_destroy + 0x0000000040385e80 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040385e80 spi_flash_encryption_hal_destroy + .text.spi_flash_encryption_hal_check + 0x0000000040385e8a 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x0000000040385e8a spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x0000000040385e94 0xc esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040385e94 spi_flash_hal_gpspi_poll_cmd_done + .text.spi_flash_hal_gpspi_device_config + 0x0000000040385ea0 0xd4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040385ea0 spi_flash_hal_gpspi_device_config + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x0000000040385f74 0x1ba esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040385f74 spi_flash_hal_gpspi_configure_host_io_mode + .text.spi_flash_hal_gpspi_common_command + 0x000000004038612e 0x20a esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004038612e spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x0000000040386338 0x112 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040386338 spi_flash_hal_gpspi_read + .text.spi_flash_hal_gpspi_supports_direct_write + 0x000000004038644a 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004038644a spi_flash_hal_gpspi_supports_direct_write + .text.spi_flash_hal_gpspi_supports_direct_read + 0x000000004038644e 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004038644e spi_flash_hal_gpspi_supports_direct_read + .text.spi_flash_hal_gpspi_check_status + 0x0000000040386452 0xe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x0000000040386452 spi_flash_hal_gpspi_check_status + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_hal_poll_cmd_done + 0x0000000040386460 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386460 spi_flash_hal_poll_cmd_done + .text.spi_flash_hal_configure_host_io_mode + 0x0000000040386468 0x1ae esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386468 spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x0000000040386616 0x1ac esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386616 spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x00000000403867c2 0xd2 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000403867c2 spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x0000000040386894 0x24 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386894 spi_flash_hal_erase_chip + .text.spi_flash_hal_erase_sector + 0x00000000403868b8 0x4c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x00000000403868b8 spi_flash_hal_erase_sector + .text.spi_flash_hal_erase_block + 0x0000000040386904 0x4a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386904 spi_flash_hal_erase_block + .text.spi_flash_hal_program_page + 0x000000004038694e 0xba esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004038694e spi_flash_hal_program_page + .text.spi_flash_hal_set_write_protect + 0x0000000040386a08 0x2c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386a08 spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x0000000040386a34 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386a34 spi_flash_hal_check_status + .text.spi_flash_hal_setup_read_suspend + 0x0000000040386a4c 0xbc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386a4c spi_flash_hal_setup_read_suspend + .text.spi_flash_hal_setup_auto_suspend_mode + 0x0000000040386b08 0x62 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386b08 spi_flash_hal_setup_auto_suspend_mode + .text.spi_flash_hal_setup_auto_resume_mode + 0x0000000040386b6a 0x3a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386b6a spi_flash_hal_setup_auto_resume_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x0000000040386ba4 0x64 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386ba4 spi_flash_hal_disable_auto_suspend_mode + .text.spi_flash_hal_disable_auto_resume_mode + 0x0000000040386c08 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386c08 spi_flash_hal_disable_auto_resume_mode + .text.spi_flash_hal_device_config + 0x0000000040386c44 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386c44 spi_flash_hal_device_config + .text.spi_flash_hal_resume + 0x0000000040386cec 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386cec spi_flash_hal_resume + .text.spi_flash_hal_suspend + 0x0000000040386cfc 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x0000000040386cfc spi_flash_hal_suspend + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) + .text.periph_ll_get_clk_en_reg + 0x0000000040386d0c 0x32 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.periph_ll_get_rst_en_reg + 0x0000000040386d3e 0x32 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_init + 0x0000000040386d70 0x48 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386d70 systimer_hal_init + .text.systimer_hal_get_counter_value + 0x0000000040386db8 0x52 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386db8 systimer_hal_get_counter_value + .text.systimer_hal_set_alarm_target + 0x0000000040386e0a 0x66 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386e0a systimer_hal_set_alarm_target + .text.systimer_hal_set_alarm_period + 0x0000000040386e70 0x76 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386e70 systimer_hal_set_alarm_period + .text.systimer_hal_enable_alarm_int + 0x0000000040386ee6 0x10 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386ee6 systimer_hal_enable_alarm_int + .text.systimer_hal_counter_value_advance + 0x0000000040386ef6 0x6c esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386ef6 systimer_hal_counter_value_advance + .text.systimer_hal_enable_counter + 0x0000000040386f62 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386f62 systimer_hal_enable_counter + .text.systimer_hal_select_alarm_mode + 0x0000000040386f78 0x34 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386f78 systimer_hal_select_alarm_mode + .text.systimer_hal_connect_alarm_counter + 0x0000000040386fac 0x1c esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386fac systimer_hal_connect_alarm_counter + .text.systimer_hal_counter_can_stall_by_cpu + 0x0000000040386fc8 0x3c esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x0000000040386fc8 systimer_hal_counter_can_stall_by_cpu + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + .text.wdt_hal_init + 0x0000000040387004 0x230 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040387004 wdt_hal_init + .text.wdt_hal_config_stage + 0x0000000040387234 0x11e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040387234 wdt_hal_config_stage + .text.wdt_hal_write_protect_disable + 0x0000000040387352 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040387352 wdt_hal_write_protect_disable + .text.wdt_hal_write_protect_enable + 0x0000000040387374 0x14 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040387374 wdt_hal_write_protect_enable + .text.wdt_hal_enable + 0x0000000040387388 0x38 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040387388 wdt_hal_enable + .text.wdt_hal_disable + 0x00000000403873c0 0x2c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x00000000403873c0 wdt_hal_disable + .text.wdt_hal_handle_intr + 0x00000000403873ec 0x32 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x00000000403873ec wdt_hal_handle_intr + .text.wdt_hal_feed + 0x000000004038741e 0x1e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004038741e wdt_hal_feed + .text.wdt_hal_set_flashboot_en + 0x000000004038743c 0x3a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004038743c wdt_hal_set_flashboot_en + .text.wdt_hal_is_enabled + 0x0000000040387476 0x16 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x0000000040387476 wdt_hal_is_enabled + *libheap.a:heap_tlsf.*(.literal .literal.* .text .text.*) + .text.control_construct + 0x000000004038748c 0x3e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.default_walker + 0x00000000403874ca 0x2a esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_walk_pool + 0x00000000403874f4 0x52 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x00000000403874f4 tlsf_walk_pool + .text.tlsf_block_size + 0x0000000040387546 0xe esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387546 tlsf_block_size + .text.tlsf_size + 0x0000000040387554 0x6 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387554 tlsf_size + .text.tlsf_block_size_min + 0x000000004038755a 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004038755a tlsf_block_size_min + .text.tlsf_pool_overhead + 0x000000004038755e 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004038755e tlsf_pool_overhead + .text.tlsf_add_pool + 0x0000000040387562 0x16e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387562 tlsf_add_pool + .text.tlsf_create + 0x00000000403876d0 0x2e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x00000000403876d0 tlsf_create + .text.tlsf_get_pool + 0x00000000403876fe 0x16 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x00000000403876fe tlsf_get_pool + .text.tlsf_create_with_pool + 0x0000000040387714 0x34 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387714 tlsf_create_with_pool + .text.tlsf_malloc + 0x0000000040387748 0x3d0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387748 tlsf_malloc + .text.tlsf_free + 0x0000000040387b18 0x3f2 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387b18 tlsf_free + .text.tlsf_realloc + 0x0000000040387f0a 0x546 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x0000000040387f0a tlsf_realloc + *libheap.a:multi_heap.*(.literal .literal.* .text .text.*) + .text.multi_heap_get_info_tlsf + 0x0000000040388450 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.assert_valid_block + 0x0000000040388470 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_allocated_size_impl + 0x00000000403884ba 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000403884ba multi_heap_get_allocated_size + 0x00000000403884ba multi_heap_get_allocated_size_impl + .text.multi_heap_register_impl + 0x00000000403884ca 0x70 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000403884ca multi_heap_register + 0x00000000403884ca multi_heap_register_impl + .text.multi_heap_set_lock + 0x000000004038853a 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004038853a multi_heap_set_lock + .text.multi_heap_malloc_impl + 0x000000004038853e 0x54 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004038853e multi_heap_malloc_impl + 0x000000004038853e multi_heap_malloc + .text.multi_heap_free_impl + 0x0000000040388592 0x44 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040388592 multi_heap_free + 0x0000000040388592 multi_heap_free_impl + 0x0000000040388592 multi_heap_aligned_free + .text.multi_heap_realloc_impl + 0x00000000403885d6 0x94 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000403885d6 multi_heap_realloc_impl + 0x00000000403885d6 multi_heap_realloc + .text.multi_heap_minimum_free_size_impl + 0x000000004038866a 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004038866a multi_heap_minimum_free_size + 0x000000004038866a multi_heap_minimum_free_size_impl + .text.multi_heap_get_info_impl + 0x0000000040388674 0x82 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040388674 multi_heap_get_info_impl + 0x0000000040388674 multi_heap_get_info + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + .text.esp_log_write + 0x00000000403886f6 0x20 esp-idf/log/liblog.a(log.c.obj) + 0x00000000403886f6 esp_log_write + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + .text.esp_log_early_timestamp + 0x0000000040388716 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040388716 esp_log_early_timestamp + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + .text.esp_log_impl_lock_timeout + 0x000000004038873c 0x46 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x000000004038873c esp_log_impl_lock_timeout + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + .text.esp_log_impl_unlock + 0x0000000040388782 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040388782 esp_log_impl_unlock + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + .text.esp_log_timestamp + 0x00000000403887a8 0x56 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x00000000403887a8 esp_log_timestamp + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + .text.abort 0x00000000403887fe 0x80 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x00000000403887fe abort + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + .text.malloc 0x000000004038887e 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004038887e pvalloc + 0x000000004038887e valloc + 0x000000004038887e malloc + .text.realloc 0x000000004038888c 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004038888c realloc + .text.free 0x000000004038889a 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004038889a free + 0x000000004038889a cfree + .text._malloc_r + 0x00000000403888a8 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000403888a8 _malloc_r + .text._free_r 0x00000000403888b8 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000403888b8 _free_r + .text._realloc_r + 0x00000000403888c8 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000403888c8 _realloc_r + .text._calloc_r + 0x00000000403888da 0x3e esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000403888da _calloc_r + .text.calloc 0x0000000040388918 0x22 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040388918 calloc + .text.newlib_include_heap_impl + 0x000000004038893a 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004038893a newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *libriscv.a:interrupt.*(.literal .literal.* .text .text.*) + .text.intr_handler_set + 0x000000004038893c 0x42 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x000000004038893c intr_handler_set + .text.intr_handler_get + 0x000000004038897e 0x10 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x000000004038897e intr_handler_get + .text._global_interrupt_handler + 0x000000004038898e 0x24 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x000000004038898e _global_interrupt_handler + .text.riscv_global_interrupts_enable + 0x00000000403889b2 0x6 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x00000000403889b2 riscv_global_interrupts_enable + .text.riscv_global_interrupts_disable + 0x00000000403889b8 0x6 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x00000000403889b8 riscv_global_interrupts_disable + *libriscv.a:vectors.*(.literal .literal.* .text .text.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_status_hs + 0x00000000403889be 0x3c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x00000000403889be memspi_host_read_status_hs + .text.memspi_host_erase_chip + 0x00000000403889fa 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x00000000403889fa memspi_host_erase_chip + .text.memspi_host_set_write_protect + 0x0000000040388a20 0x2c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388a20 memspi_host_set_write_protect + .text.memspi_host_write_data_slicer + 0x0000000040388a4c 0x22 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388a4c memspi_host_write_data_slicer + .text.memspi_host_read_data_slicer + 0x0000000040388a6e 0x12 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388a6e memspi_host_read_data_slicer + .text.memspi_host_read_id_hs + 0x0000000040388a80 0x84 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388a80 memspi_host_read_id_hs + .text.memspi_host_flush_cache + 0x0000000040388b04 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388b04 memspi_host_flush_cache + .text.memspi_host_erase_sector + 0x0000000040388b2a 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388b2a memspi_host_erase_sector + .text.memspi_host_erase_block + 0x0000000040388b76 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388b76 memspi_host_erase_block + .text.memspi_host_program_page + 0x0000000040388bc2 0x54 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388bc2 memspi_host_program_page + .text.memspi_host_init_pointers + 0x0000000040388c16 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040388c16 memspi_host_init_pointers + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_boya_probe + 0x0000000040388c3a 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x0000000040388c3a spi_flash_chip_boya_probe + .text.spi_flash_chip_boya_get_caps + 0x0000000040388c64 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x0000000040388c64 spi_flash_chip_boya_get_caps + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_gd_get_caps + 0x0000000040388c68 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040388c68 spi_flash_chip_gd_get_caps + .text.spi_flash_chip_gd_probe + 0x0000000040388c7e 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040388c7e spi_flash_chip_gd_probe + .text.spi_flash_chip_gd_set_io_mode + 0x0000000040388cb2 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040388cb2 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x0000000040388d06 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040388d06 spi_flash_chip_gd_get_io_mode + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_generic_probe + 0x0000000040388d26 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388d26 spi_flash_chip_generic_probe + .text.spi_flash_chip_generic_reset + 0x0000000040388d2a 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388d2a spi_flash_chip_generic_reset + .text.spi_flash_chip_generic_detect_size + 0x0000000040388d86 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388d86 spi_flash_chip_generic_detect_size + .text.spi_flash_chip_generic_erase_chip + 0x0000000040388db4 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388db4 spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_erase_sector + 0x0000000040388e14 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388e14 spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x0000000040388e7c 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388e7c spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x0000000040388ee4 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388ee4 spi_flash_chip_generic_page_program + .text.spi_flash_chip_generic_write_encrypted + 0x0000000040388f50 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040388f50 spi_flash_chip_generic_write_encrypted + .text.spi_flash_chip_generic_set_write_protect + 0x000000004038903a 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038903a spi_flash_chip_generic_set_write_protect + .text.spi_flash_chip_generic_read_reg + 0x0000000040389088 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389088 spi_flash_chip_generic_read_reg + .text.spi_flash_chip_generic_wait_idle + 0x000000004038909c 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038909c spi_flash_chip_generic_wait_idle + .text.spi_flash_chip_generic_get_caps + 0x000000004038914c 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038914c spi_flash_chip_generic_get_caps + .text.spi_flash_common_read_qe_sr + 0x0000000040389164 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x000000004038919c 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x00000000403891ca 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403891ca spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x0000000040389210 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389210 spi_flash_common_write_status_16b_wrsr + .text.spi_flash_chip_generic_write + 0x0000000040389224 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389224 spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x00000000403892dc 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403892dc spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x000000004038932a 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038932a spi_flash_chip_generic_yield + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x0000000040389370 0x6e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389370 spi_flash_chip_generic_suspend_cmd_conf + .text.spi_flash_chip_generic_read_unique_id + 0x00000000403893de 0xac esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403893de spi_flash_chip_generic_read_unique_id + .text.spi_flash_chip_generic_config_host_io_mode + 0x000000004038948a 0xee esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038948a spi_flash_chip_generic_config_host_io_mode + .text.spi_flash_chip_generic_read + 0x0000000040389578 0xde esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389578 spi_flash_chip_generic_read + .text.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040389656 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389656 spi_flash_common_read_status_8b_rdsr2 + .text.spi_flash_chip_generic_get_io_mode + 0x000000004038966c 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038966c spi_flash_chip_generic_get_io_mode + .text.spi_flash_common_read_status_8b_rdsr + 0x000000004038968c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004038968c spi_flash_common_read_status_8b_rdsr + .text.spi_flash_common_write_status_8b_wrsr + 0x00000000403896a0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403896a0 spi_flash_common_write_status_8b_wrsr + .text.spi_flash_common_write_status_8b_wrsr2 + 0x00000000403896b4 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403896b4 spi_flash_common_write_status_8b_wrsr2 + .text.spi_flash_common_set_io_mode + 0x00000000403896ca 0xb6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000403896ca spi_flash_common_set_io_mode + .text.spi_flash_chip_generic_set_io_mode + 0x0000000040389780 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040389780 spi_flash_chip_generic_set_io_mode + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_issi_probe + 0x00000000403897a2 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000403897a2 spi_flash_chip_issi_probe + .text.spi_flash_chip_issi_get_caps + 0x00000000403897cc 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000403897cc spi_flash_chip_issi_get_caps + .text.spi_flash_chip_issi_set_io_mode + 0x00000000403897d0 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000403897d0 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x00000000403897f2 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x00000000403897f2 spi_flash_chip_issi_get_io_mode + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_mxic_probe + 0x0000000040389812 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x0000000040389812 spi_flash_chip_mxic_probe + .text.spi_flash_chip_mxic_get_caps + 0x0000000040389826 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x0000000040389826 spi_flash_chip_mxic_get_caps + .text.spi_flash_chip_mxic_read_unique_id + 0x000000004038982a 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000004038982a spi_flash_chip_mxic_read_unique_id + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_winbond_probe + 0x000000004038985e 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004038985e spi_flash_chip_winbond_probe + .text.spi_flash_chip_winbond_get_caps + 0x0000000040389872 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040389872 spi_flash_chip_winbond_get_caps + .text.spi_flash_command_winbond_program_4B + 0x0000000040389888 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_page_program + 0x00000000403898d2 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x00000000403898d2 spi_flash_chip_winbond_page_program + .text.spi_flash_command_winbond_erase_sector_4B + 0x000000004038991c 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_erase_sector + 0x0000000040389966 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040389966 spi_flash_chip_winbond_erase_sector + .text.spi_flash_command_erase_block_4B + 0x00000000403899be 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_erase_block + 0x0000000040389a08 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040389a08 spi_flash_chip_winbond_erase_block + .text.spi_flash_chip_winbond_read + 0x0000000040389a60 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x0000000040389a60 spi_flash_chip_winbond_read + *libspi_flash.a:spi_flash_rom_patch.*(.literal .literal.* .text .text.*) + +.dram0.dummy 0x000000003fc80000 0x9c00 + 0x000000003fc89c00 . = ((ORIGIN (dram0_0_seg) + _iram_end) - _iram_start) + *fill* 0x000000003fc80000 0x9c00 + +.dram0.data 0x000000003fc89c00 0x13b8 + 0x000000003fc89c00 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + 0x000000003fc8a400 __global_pointer$ = (. + 0x800) + *(.sdata) + .sdata 0x000000003fc89c00 0x4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + 0x000000003fc89c00 __global_locale_ptr + *(.sdata.*) + .sdata.first_call.3866 + 0x000000003fc89c04 0x1 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + *fill* 0x000000003fc89c05 0x3 + .sdata.rtc_wdt_ctx + 0x000000003fc89c08 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .sdata.s_panic_uart + 0x000000003fc89c10 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .sdata.wdt0_context + 0x000000003fc89c14 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .sdata.esp_log_default_level + 0x000000003fc89c1c 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003fc89c1c esp_log_default_level + .sdata.s_log_print_func + 0x000000003fc89c20 0x4 esp-idf/log/liblog.a(log.c.obj) + .sdata.malloc_alwaysinternal_limit + 0x000000003fc89c24 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .sdata.xIsrStackTop + 0x000000003fc89c28 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc89c28 xIsrStackTop + .sdata.xTaskQueueMutex + 0x000000003fc89c2c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sdata.ESP_EFUSE_BLOCK2_VERSION + 0x000000003fc89c34 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c34 ESP_EFUSE_BLOCK2_VERSION + .sdata.ESP_EFUSE_DIG_DBIAS_HVT + 0x000000003fc89c3c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c3c ESP_EFUSE_DIG_DBIAS_HVT + .sdata.ESP_EFUSE_K_DIG_LDO + 0x000000003fc89c44 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c44 ESP_EFUSE_K_DIG_LDO + .sdata.ESP_EFUSE_K_RTC_LDO + 0x000000003fc89c4c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c4c ESP_EFUSE_K_RTC_LDO + .sdata.ESP_EFUSE_OCODE + 0x000000003fc89c54 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c54 ESP_EFUSE_OCODE + .sdata.ESP_EFUSE_V_DIG_DBIAS20 + 0x000000003fc89c5c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c5c ESP_EFUSE_V_DIG_DBIAS20 + .sdata.ESP_EFUSE_V_RTC_DBIAS20 + 0x000000003fc89c64 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c64 ESP_EFUSE_V_RTC_DBIAS20 + .sdata.ESP_EFUSE_WAFER_VERSION + 0x000000003fc89c6c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003fc89c6c ESP_EFUSE_WAFER_VERSION + .sdata.uart_selectlock + 0x000000003fc89c74 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .sdata.esp_flash_registered_chips + 0x000000003fc89c7c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x000000003fc89c7c esp_flash_registered_chips + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + .sdata2.g_startup_fn + 0x000000003fc89c80 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003fc89c80 g_startup_fn + .sdata2.s_ctx 0x000000003fc89c84 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .sdata2.soc_memory_region_count + 0x000000003fc89c8c 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003fc89c8c soc_memory_region_count + .sdata2.BLOCK2_VERSION + 0x000000003fc89c90 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.DIG_DBIAS_HVT + 0x000000003fc89c94 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.K_DIG_LDO + 0x000000003fc89c98 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.K_RTC_LDO + 0x000000003fc89c9c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.OCODE 0x000000003fc89ca0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.V_DIG_DBIAS20 + 0x000000003fc89ca4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.V_RTC_DBIAS20 + 0x000000003fc89ca8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.WAFER_VERSION + 0x000000003fc89cac 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .sdata2.chip_name + 0x000000003fc89cb0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .sdata2.chip_name + 0x000000003fc89cb8 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *fill* 0x000000003fc89cbd 0x3 + .sdata2.chip_name + 0x000000003fc89cc0 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *fill* 0x000000003fc89cc5 0x3 + .sdata2.chip_name + 0x000000003fc89cc8 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *fill* 0x000000003fc89ccb 0x1 + .sdata2.TAG 0x000000003fc89ccc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .sdata2.chip_name + 0x000000003fc89cd4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .sdata2.chip_name + 0x000000003fc89cdc 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + *fill* 0x000000003fc89ce1 0x3 + .sdata2.TAG 0x000000003fc89ce4 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc89ceb 0x1 + .sdata2.esp_unknown_msg + 0x000000003fc89cec 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003fc89cf2 0x2 + .sdata2.g_spi_lock_main_flash_dev + 0x000000003fc89cf4 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x000000003fc89cf4 g_spi_lock_main_flash_dev + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x000000003fc89cf8 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_NAME(.esp_system_init_fn) SORT_BY_NAME(.esp_system_init_fn.*)) + .esp_system_init_fn.init_components0 + 0x000000003fc89cf8 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003fc89d00 _esp_system_init_fn_array_end = ABSOLUTE (.) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data.*) + .data.s_fd_table + 0x000000003fc89d00 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_context + 0x000000003fc89dc0 0x48 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.timestamp_id.4848 + 0x000000003fc89e08 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .data.s_stub_table + 0x000000003fc89e18 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.uart_context + 0x000000003fc89eb4 0x20 esp-idf/driver/libdriver.a(uart.c.obj) + .data.default_registered_chips + 0x000000003fc89ed4 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + *(.dram1 .dram1.*) + .dram1.24 0x000000003fc89ef0 0x4 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x000000003fc89ef0 uxTopUsedPriority + .dram1.27 0x000000003fc89ef4 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003fc89ef4 g_flash_guard_default_ops + .dram1.24 0x000000003fc89f0c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.25 0x000000003fc89f1c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000003fc89f1c rom_spiflash_api_funcs + .dram1.25 0x000000003fc89f20 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.26 0x000000003fc89f44 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.42 0x000000003fc89f64 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.43 0x000000003fc89f74 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.5 0x000000003fc89f98 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x000000003fc89f98 esp_flash_noos_functions + .dram1.0 0x000000003fc89fbc 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc89fc2 0x2 + .dram1.1 0x000000003fc89fc4 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.2 0x000000003fc89fdc 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc89fdc rom_flash_chip_dummy + .dram1.3 0x000000003fc89fe0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc89fe0 spi_flash_chip_generic_timeout + .dram1.19 0x000000003fc89ff4 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.27 0x000000003fc8a04c 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc8a052 0x2 + .dram1.28 0x000000003fc8a054 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc8a05a 0x2 + .dram1.29 0x000000003fc8a05c 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .dram1.30 0x000000003fc8a064 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x000000003fc8a07d _coredump_dram_start = ABSOLUTE (.) + *(.dram1.coredump .dram1.coredump.*) + 0x000000003fc8a07d _coredump_dram_end = ABSOLUTE (.) + *libapp_trace.a:app_trace.*(.rodata .rodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.*) + 0x000000003fc8a07d _bt_data_start = ABSOLUTE (.) + *libbt.a:(.data .data.*) + 0x000000003fc8a080 . = ALIGN (0x4) + *fill* 0x000000003fc8a07d 0x3 + 0x000000003fc8a080 _bt_data_end = ABSOLUTE (.) + 0x000000003fc8a080 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(.data .data.*) + 0x000000003fc8a080 . = ALIGN (0x4) + 0x000000003fc8a080 _btdm_data_end = ABSOLUTE (.) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.*) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003fc8a080 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc8a0bb 0x1 + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 + 0x000000003fc8a0bc 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc8a0e5 0x3 + .rodata.rtc_clk_xtal_freq_get.str1.4 + 0x000000003fc8a0e8 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_system.a:esp_err.*(.rodata .rodata.*) + *fill* 0x000000003fc8a12f 0x1 + .rodata._esp_error_check_failed.str1.4 + 0x000000003fc8a130 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata.esp_error_check_failed_print.str1.4 + 0x000000003fc8a140 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:ubsan.*(.rodata .rodata.*) + *libgcc.a:_divsf3.*(.rodata .rodata.*) + *libgcov.a:(.rodata .rodata.*) + *libhal.a:cpu_hal.*(.rodata .rodata.*) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.*) + *libhal.a:soc_hal.*(.rodata .rodata.*) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.*) + *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.*) + *libhal.a:spi_hal_iram.*(.rodata .rodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.*) + *libhal.a:systimer_hal.*(.rodata .rodata.*) + .rodata.systimer_hal_set_alarm_period.str1.4 + 0x000000003fc8a19c 0x55 esp-idf/hal/libhal.a(systimer_hal.c.obj) + *libhal.a:wdt_hal_iram.*(.rodata .rodata.*) + *libheap.a:heap_tlsf.*(.rodata .rodata.*) + *fill* 0x000000003fc8a1f1 0x3 + .rodata.__func__.3670 + 0x000000003fc8a1f4 0x16 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a20a 0x2 + .rodata.__func__.3679 + 0x000000003fc8a20c 0x12 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a21e 0x2 + .rodata.__func__.3687 + 0x000000003fc8a220 0x12 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a232 0x2 + .rodata.__func__.3710 + 0x000000003fc8a234 0xc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3715 + 0x000000003fc8a240 0xd esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a24d 0x3 + .rodata.__func__.3721 + 0x000000003fc8a250 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a261 0x3 + .rodata.__func__.3727 + 0x000000003fc8a264 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a275 0x3 + .rodata.__func__.3733 + 0x000000003fc8a278 0x10 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3740 + 0x000000003fc8a288 0x10 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__.3755 + 0x000000003fc8a298 0x12 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a2aa 0x2 + .rodata.__func__.3762 + 0x000000003fc8a2ac 0x13 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a2bf 0x1 + .rodata.__func__.3925 + 0x000000003fc8a2c0 0xa esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a2ca 0x2 + .rodata.__func__.3938 + 0x000000003fc8a2cc 0xd esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a2d9 0x3 + .rodata.default_walker.str1.4 + 0x000000003fc8a2dc 0x26 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a302 0x2 + .rodata.integrity_walker.str1.4 + 0x000000003fc8a304 0x96 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a39a 0x2 + .rodata.tlsf_add_pool.str1.4 + 0x000000003fc8a39c 0x142 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a4de 0x2 + .rodata.tlsf_create.str1.4 + 0x000000003fc8a4e0 0x32 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a512 0x2 + .rodata.tlsf_free.str1.4 + 0x000000003fc8a514 0x148 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.tlsf_malloc.str1.4 + 0x000000003fc8a65c 0x1a7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a803 0x1 + .rodata.tlsf_realloc.str1.4 + 0x000000003fc8a804 0x2e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc8a832 0x2 + .rodata.tlsf_remove_pool.str1.4 + 0x000000003fc8a834 0xe6 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *libheap.a:multi_heap.*(.rodata .rodata.*) + *fill* 0x000000003fc8a91a 0x2 + .rodata.__func__.4519 + 0x000000003fc8a91c 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003fc8a935 0x3 + .rodata.__func__.4560 + 0x000000003fc8a938 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.assert_valid_block.str1.4 + 0x000000003fc8a950 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003fc8a982 0x2 + .rodata.multi_heap_get_first_block.str1.4 + 0x000000003fc8a984 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003fc8a991 0x3 + .rodata.multi_heap_register_impl.str1.4 + 0x000000003fc8a994 0x2d esp-idf/heap/libheap.a(multi_heap.c.obj) + *libnewlib.a:abort.*(.rodata .rodata.*) + *fill* 0x000000003fc8a9c1 0x3 + .rodata.abort.str1.4 + 0x000000003fc8a9c4 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:heap.*(.rodata .rodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.*) + 0x000000003fc8a9ea _nimble_data_start = ABSOLUTE (.) + *libnimble.a:(.data .data.*) + 0x000000003fc8a9ec . = ALIGN (0x4) + *fill* 0x000000003fc8a9ea 0x2 + 0x000000003fc8a9ec _nimble_data_end = ABSOLUTE (.) + *libphy.a:(.rodata .rodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.*) + .rodata.__func__.5409 + 0x000000003fc8a9ec 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc8aa05 0x3 + .rodata.__func__.5415 + 0x000000003fc8aa08 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__.5423 + 0x000000003fc8aa20 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc8aa39 0x3 + .rodata.esp_flash_gpspi_host + 0x000000003fc8aa3c 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x000000003fc8aa94 0x4a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc8aade 0x2 + .rodata.memspi_host_program_page.str1.4 + 0x000000003fc8aae0 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc8aafe 0x2 + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003fc8ab00 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.*) + .rodata.esp_flash_chip_boya + 0x000000003fc8ab24 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x000000003fc8ab24 esp_flash_chip_boya + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.*) + .rodata.esp_flash_chip_gd + 0x000000003fc8ab9c 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003fc8ab9c esp_flash_chip_gd + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.*) + .rodata.TAG 0x000000003fc8ac14 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc8ac21 0x3 + .rodata.__func__.4205 + 0x000000003fc8ac24 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc8ac4d 0x3 + .rodata.esp_flash_chip_generic + 0x000000003fc8ac50 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc8ac50 esp_flash_chip_generic + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003fc8acc8 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc8ad12 0x2 + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003fc8ad14 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc8ad57 0x1 + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x000000003fc8ad58 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc8adaa 0x2 + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 + 0x000000003fc8adac 0x5f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.*) + *fill* 0x000000003fc8ae0b 0x1 + .rodata.esp_flash_chip_issi + 0x000000003fc8ae0c 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003fc8ae0c esp_flash_chip_issi + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.*) + .rodata.esp_flash_chip_mxic + 0x000000003fc8ae84 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000003fc8ae84 esp_flash_chip_mxic + .rodata.spi_flash_chip_mxic_read_unique_id.str1.4 + 0x000000003fc8aefc 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.*) + *fill* 0x000000003fc8af3d 0x3 + .rodata.esp_flash_chip_winbond + 0x000000003fc8af40 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000003fc8af40 esp_flash_chip_winbond + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x000000003fc8afb8 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_rom_patch.*(.rodata .rodata.*) + 0x000000003fc8afb8 _data_end = ABSOLUTE (.) + 0x000000003fc8affc . = ALIGN (0x4) + +.noinit 0x000000003fc8afb8 0x0 + 0x000000003fc8afb8 . = ALIGN (0x4) + 0x000000003fc8afb8 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x000000003fc8afb8 . = ALIGN (0x4) + 0x000000003fc8afb8 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x000000003fc8afc0 0xe50 + 0x000000003fc8afc0 . = ALIGN (0x8) + 0x000000003fc8afc0 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.shutdown_handlers + 0x000000003fc8afc0 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_vfs 0x000000003fc8afd4 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_log_cache + 0x000000003fc8aff4 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_intr_handlers + 0x000000003fc8b0ec 0x100 esp-idf/riscv/libriscv.a(interrupt.c.obj) + *fill* 0x000000003fc8b1ec 0x4 + .bss.xIsrStack + 0x000000003fc8b1f0 0x600 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss.pxReadyTasksLists + 0x000000003fc8b7f0 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x000000003fc8b9e4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x000000003fc8b9f8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003fc8ba0c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003fc8ba20 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003fc8ba34 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.s_common_mutex + 0x000000003fc8ba48 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003fc8ba48 __lock___at_quick_exit_mutex + 0x000000003fc8ba48 __lock___tz_mutex + 0x000000003fc8ba48 __lock___arc4random_mutex + 0x000000003fc8ba48 __lock___dd_hash_mutex + .bss.s_common_recursive_mutex + 0x000000003fc8ba9c 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003fc8ba9c __lock___atexit_recursive_mutex + 0x000000003fc8ba9c __lock___sinit_recursive_mutex + 0x000000003fc8ba9c __lock___sfp_recursive_mutex + 0x000000003fc8ba9c __lock___env_recursive_mutex + 0x000000003fc8ba9c __lock___malloc_recursive_mutex + .bss.s_reent 0x000000003fc8baf0 0xf0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss.ref_counts + 0x000000003fc8bbe0 0x1b esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x000000003fc8bbfb 0x1 + .bss.s_mmap_page_refcnt + 0x000000003fc8bbfc 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.idle_cb 0x000000003fc8bc7c 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.tick_cb 0x000000003fc8bc9c 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + *(.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) + .sbss.s_app_elf_sha256.3865 + 0x000000003fc8bcbc 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .sbss.s_pthread_cfg_key + 0x000000003fc8bcc4 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sbss.s_threads_mux + 0x000000003fc8bcc8 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .sbss.s_keys 0x000000003fc8bccc 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003fc8bccc s_keys + .sbss.g_startup_time + 0x000000003fc8bcd0 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003fc8bcd0 g_startup_time + .sbss.g_panic_abort + 0x000000003fc8bcd8 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003fc8bcd8 g_panic_abort + *fill* 0x000000003fc8bcd9 0x3 + .sbss.s_panic_abort_details + 0x000000003fc8bcdc 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .sbss.g_exc_frames + 0x000000003fc8bce0 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003fc8bce0 g_exc_frames + .sbss.s_fd_table_lock + 0x000000003fc8bce4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .sbss.s_vfs_count + 0x000000003fc8bce8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .sbss.s_registered_select_num + 0x000000003fc8bcec 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .sbss.s_registered_selects + 0x000000003fc8bcf0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .sbss.s_log_cache_entry_count + 0x000000003fc8bcf4 0x4 esp-idf/log/liblog.a(log.c.obj) + .sbss.s_log_cache_max_generation + 0x000000003fc8bcf8 0x4 esp-idf/log/liblog.a(log.c.obj) + .sbss.s_log_cache_misses + 0x000000003fc8bcfc 0x4 esp-idf/log/liblog.a(log.c.obj) + .sbss.s_log_tags + 0x000000003fc8bd00 0x4 esp-idf/log/liblog.a(log.c.obj) + .sbss.base.4878 + 0x000000003fc8bd04 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .sbss.s_log_mutex + 0x000000003fc8bd08 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .sbss.alloc_failed_callback + 0x000000003fc8bd0c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .sbss.s_esp_rtc_time_lock + 0x000000003fc8bd10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .sbss.non_iram_int_disabled + 0x000000003fc8bd14 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .sbss.non_iram_int_disabled_flag + 0x000000003fc8bd18 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003fc8bd19 0x3 + .sbss.non_iram_int_mask + 0x000000003fc8bd1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .sbss.vector_desc_head + 0x000000003fc8bd20 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .sbss.s_cur_pll_freq + 0x000000003fc8bd24 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .sbss.s_timer_task + 0x000000003fc8bd28 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .sbss.s_timers + 0x000000003fc8bd2c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .sbss.s_correction_us + 0x000000003fc8bd30 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .sbss.s_alarm_handler + 0x000000003fc8bd38 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .sbss.s_timer_interrupt_handle + 0x000000003fc8bd3c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .sbss.systimer_hal + 0x000000003fc8bd40 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .sbss.uxCriticalNesting + 0x000000003fc8bd44 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .sbss.uxInterruptNesting + 0x000000003fc8bd48 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc8bd48 uxInterruptNesting + .sbss.uxSavedInterruptState + 0x000000003fc8bd4c 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .sbss.uxSchedulerRunning + 0x000000003fc8bd50 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc8bd50 uxSchedulerRunning + .sbss.xPortSwitchFlag + 0x000000003fc8bd54 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc8bd54 xPortSwitchFlag + .sbss.s_handled_systicks + 0x000000003fc8bd58 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .sbss.systimer_hal.5114 + 0x000000003fc8bd5c 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .sbss.pxCurrentTCB + 0x000000003fc8bd60 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003fc8bd60 pxCurrentTCB + .sbss.pxDelayedTaskList + 0x000000003fc8bd64 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.pxOverflowDelayedTaskList + 0x000000003fc8bd68 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxCurrentNumberOfTasks + 0x000000003fc8bd6c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxDeletedTasksWaitingCleanUp + 0x000000003fc8bd70 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxSchedulerSuspended + 0x000000003fc8bd74 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxTaskNumber + 0x000000003fc8bd78 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.uxTopReadyPriority + 0x000000003fc8bd7c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xIdleTaskHandle + 0x000000003fc8bd80 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xNextTaskUnblockTime + 0x000000003fc8bd84 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xNumOfOverflows + 0x000000003fc8bd88 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xPendedTicks + 0x000000003fc8bd8c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xSchedulerRunning + 0x000000003fc8bd90 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xSwitchingContext + 0x000000003fc8bd94 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xTickCount + 0x000000003fc8bd98 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.xYieldPending + 0x000000003fc8bd9c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .sbss.s_adjtime_start_us + 0x000000003fc8bda0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .sbss.s_adjtime_total_correction_us + 0x000000003fc8bda8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .sbss.s_time_lock + 0x000000003fc8bdb0 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .sbss.s_boot_time_lock + 0x000000003fc8bdb4 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .sbss.s_microseconds_offset + 0x000000003fc8bdb8 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x000000003fc8bdb8 s_microseconds_offset + .sbss.s_burn_counter + 0x000000003fc8bdc0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .sbss.p_uart_obj + 0x000000003fc8bdc4 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .sbss.s_flash_op_cache_state + 0x000000003fc8bdcc 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .sbss.s_mmap_entries_head + 0x000000003fc8bdd4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .sbss.s_mmap_last_handle + 0x000000003fc8bdd8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .sbss.s_flash_guard_ops + 0x000000003fc8bddc 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .sbss.esp_flash_default_chip + 0x000000003fc8bde0 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003fc8bde0 esp_flash_default_chip + .sbss.s_partition_list + 0x000000003fc8bde4 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .sbss.s_partition_list_lock + 0x000000003fc8bde8 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .sbss.reason 0x000000003fc8bdec 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .sbss.iwdt_context + 0x000000003fc8bdf0 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .sbss.twdt_config + 0x000000003fc8bdf8 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .sbss.twdt_context + 0x000000003fc8bdfc 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .sbss.curr_partition.5071 + 0x000000003fc8be04 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .sbss 0x000000003fc8be08 0x4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + 0x000000003fc8be08 environ + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + COMMON 0x000000003fc8be0c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003fc8be0c registered_heaps + 0x000000003fc8be10 _bt_bss_start = ABSOLUTE (.) + *libbt.a:(.bss .bss.* COMMON) + 0x000000003fc8be10 . = ALIGN (0x4) + 0x000000003fc8be10 _bt_bss_end = ABSOLUTE (.) + 0x000000003fc8be10 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(.bss .bss.* COMMON) + 0x000000003fc8be10 . = ALIGN (0x4) + 0x000000003fc8be10 _btdm_bss_end = ABSOLUTE (.) + 0x000000003fc8be10 _nimble_bss_start = ABSOLUTE (.) + *libnimble.a:(.bss .bss.* COMMON) + 0x000000003fc8be10 . = ALIGN (0x4) + 0x000000003fc8be10 _nimble_bss_end = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + 0x000000003fc8be10 . = ALIGN (0x8) + 0x000000003fc8be10 _bss_end = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.text 0x0000000042000020 0x16120 + 0x0000000042000020 _stext = . + 0x0000000042000020 _instruction_reserved_start = ABSOLUTE (.) + 0x0000000042000020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .text.esp_ota_get_app_description + 0x0000000042000020 0xa esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x0000000042000020 esp_ota_get_app_description + .text.esp_ota_init_app_elf_sha256 + 0x000000004200002a 0x16 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000004200002a esp_ota_init_app_elf_sha256 + .text.esp_pthread_cfg_key_destructor + 0x0000000042000040 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_init + 0x0000000042000052 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x0000000042000052 esp_pthread_init + .text.pthread_include_pthread_impl + 0x00000000420000a2 0x2 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000420000a2 pthread_include_pthread_impl + .text.find_key + 0x00000000420000a4 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_key_create + 0x00000000420000de 0x66 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000420000de pthread_key_create + .text.pthread_key_delete + 0x0000000042000144 0x50 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042000144 pthread_key_delete + .text.pthread_include_pthread_local_storage_impl + 0x0000000042000194 0x2 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042000194 pthread_include_pthread_local_storage_impl + .text.intr_matrix_clear + 0x0000000042000196 0x2a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text.select_rtc_slow_clk + 0x00000000420001c0 0xda esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.esp_clk_init + 0x000000004200029a 0x1ae esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x000000004200029a esp_clk_init + .text.esp_perip_clk_init + 0x0000000042000448 0xbe esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x0000000042000448 esp_perip_clk_init + .text.esp_cache_err_int_init + 0x0000000042000506 0x7c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x0000000042000506 esp_cache_err_int_init + .text.do_global_ctors + 0x0000000042000582 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.do_system_init_fn + 0x00000000420005c8 0x32 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.do_secondary_init + 0x00000000420005fa 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.do_core_init + 0x0000000042000606 0xe0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.start_cpu0_default + 0x00000000420006e6 0x1de esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x00000000420006e6 start_cpu0 + .text.esp_brownout_init + 0x00000000420008c4 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x00000000420008c4 esp_brownout_init + .text.esp_apb_backup_dma_lock_init + 0x00000000420008ea 0x22 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x00000000420008ea esp_apb_backup_dma_lock_init + .text.panic_print_char + 0x000000004200090c 0x34 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000004200090c panic_print_char + .text.panic_print_str + 0x0000000042000940 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042000940 panic_print_str + .text.print_abort_details + 0x0000000042000966 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_hex + 0x000000004200097a 0x3a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000004200097a panic_print_hex + .text.panic_print_dec + 0x00000000420009b4 0x36 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x00000000420009b4 panic_print_dec + .text.esp_panic_handler_reconfigure_wdts + 0x00000000420009ea 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x00000000420009ea esp_panic_handler_reconfigure_wdts + .text.panic_abort + 0x0000000042000a72 0x18 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042000a72 panic_abort + .text.esp_panic_handler + 0x0000000042000a8a 0x240 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042000a8a esp_panic_handler + .text.frame_to_panic_info + 0x0000000042000cca 0x44 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.panic_handler + 0x0000000042000d0e 0x7a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.print_state_for_core + 0x0000000042000d88 0x28 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.print_state + 0x0000000042000db0 0x18 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text.panic_restart + 0x0000000042000dc8 0xc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000042000dc8 panic_restart + .text.panic_print_basic_backtrace + 0x0000000042000dd4 0x86 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.print_memprot_err_details + 0x0000000042000e5a 0xc2 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.print_cache_err_details + 0x0000000042000f1c 0x11e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_print_registers + 0x000000004200103a 0xda esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x000000004200103a panic_print_registers + .text.panic_soc_fill_info + 0x0000000042001114 0x96 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042001114 panic_soc_fill_info + .text.panic_arch_fill_info + 0x00000000420011aa 0x3c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000420011aa panic_arch_fill_info + .text.panic_print_backtrace + 0x00000000420011e6 0xc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000420011e6 panic_print_backtrace + .text.panic_get_cause + 0x00000000420011f2 0x6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000420011f2 panic_get_cause + .text.uart_hal_rxfifo_rst + 0x00000000420011f8 0x18 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x00000000420011f8 uart_hal_rxfifo_rst + .text.uart_hal_write_txfifo + 0x0000000042001210 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x0000000042001210 uart_hal_write_txfifo + .text.brownout_hal_config + 0x0000000042001250 0xa0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x0000000042001250 brownout_hal_config + .text.get_vfs_for_fd + 0x00000000420012f0 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_common + 0x0000000042001334 0x16c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.get_vfs_for_path + 0x00000000420014a0 0xaa esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x000000004200154a 0x66 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register + 0x00000000420015b0 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420015b0 esp_vfs_register + .text.esp_vfs_open + 0x00000000420015e0 0x11c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420015e0 esp_vfs_open + 0x00000000420015e0 _open_r + .text.esp_vfs_write + 0x00000000420016fc 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420016fc esp_vfs_write + 0x00000000420016fc _write_r + .text.esp_vfs_lseek + 0x0000000042001784 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001784 _lseek_r + 0x0000000042001784 esp_vfs_lseek + .text.esp_vfs_read + 0x000000004200180c 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x000000004200180c esp_vfs_read + 0x000000004200180c _read_r + .text.esp_vfs_close + 0x0000000042001894 0xbc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001894 esp_vfs_close + 0x0000000042001894 _close_r + .text.esp_vfs_fstat + 0x0000000042001950 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001950 esp_vfs_fstat + 0x0000000042001950 _fstat_r + .text.esp_vfs_stat + 0x00000000420019cc 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420019cc _stat_r + 0x00000000420019cc esp_vfs_stat + .text.esp_vfs_link + 0x0000000042001a2a 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001a2a esp_vfs_link + 0x0000000042001a2a _link_r + .text.esp_vfs_unlink + 0x0000000042001aa8 0x56 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001aa8 esp_vfs_unlink + 0x0000000042001aa8 _unlink_r + .text.esp_vfs_rename + 0x0000000042001afe 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001afe _rename_r + 0x0000000042001afe esp_vfs_rename + .text.esp_vfs_select_triggered + 0x0000000042001b80 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001b80 esp_vfs_select_triggered + .text.esp_vfs_select_triggered_isr + 0x0000000042001bd4 0x52 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001bd4 esp_vfs_select_triggered_isr + .text.vfs_include_syscalls_impl + 0x0000000042001c26 0x2 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042001c26 vfs_include_syscalls_impl + .text.uart_tx_char + 0x0000000042001c28 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_rx_char + 0x0000000042001c68 0x38 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_read_char + 0x0000000042001ca0 0x2c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.unregister_select + 0x0000000042001ccc 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_end_select + 0x0000000042001d4a 0x58 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.register_select + 0x0000000042001da2 0x72 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_start_select + 0x0000000042001e14 0x200 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.select_notif_callback_isr + 0x0000000042002014 0x10a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tcflush + 0x000000004200211e 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tcdrain + 0x000000004200215a 0x30 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tcgetattr + 0x000000004200218a 0x37c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tcsetattr + 0x0000000042002506 0x32a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_access + 0x0000000042002830 0x78 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_open + 0x00000000420028a8 0x7a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fcntl + 0x0000000042002922 0x7a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fstat + 0x000000004200299c 0x4c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_close + 0x00000000420029e8 0x2e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_return_char + 0x0000000042002a16 0x38 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fsync + 0x0000000042002a4e 0x6a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_read + 0x0000000042002ab8 0xf2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_write + 0x0000000042002baa 0xd4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_register + 0x0000000042002c7e 0xdc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x0000000042002c7e esp_vfs_dev_uart_register + .text.heap_caps_alloc_failed + 0x0000000042002d5a 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_match + 0x0000000042002d72 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042002d72 heap_caps_match + .text.heap_caps_get_minimum_free_size + 0x0000000042002da0 0x40 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042002da0 heap_caps_get_minimum_free_size + .text.heap_caps_get_info + 0x0000000042002de0 0x86 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042002de0 heap_caps_get_info + .text.heap_caps_get_largest_free_block + 0x0000000042002e66 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042002e66 heap_caps_get_largest_free_block + .text.register_heap + 0x0000000042002e78 0x4a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_enable_nonos_stack_heaps + 0x0000000042002ec2 0x36 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x0000000042002ec2 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x0000000042002ef8 0x39c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x0000000042002ef8 heap_caps_init + .text.s_get_num_reserved_regions + 0x0000000042003294 0x18 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.s_compare_reserved_regions + 0x00000000420032ac 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.s_prepare_reserved_regions + 0x00000000420032b4 0x118 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text.soc_get_available_memory_region_max_count + 0x00000000420033cc 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x00000000420033cc soc_get_available_memory_region_max_count + .text.soc_get_available_memory_regions + 0x00000000420033de 0x140 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x00000000420033de soc_get_available_memory_regions + .text.esp_clk_slowclk_cal_get + 0x000000004200351e 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x000000004200351e esp_clk_slowclk_cal_get + .text.esp_rtc_get_time_us + 0x0000000042003526 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x0000000042003526 esp_rtc_get_time_us + .text.esp_clk_slowclk_cal_set + 0x00000000420035ce 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x00000000420035ce esp_clk_slowclk_cal_set + .text.insert_vector_desc + 0x00000000420035e6 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x000000004200363e 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_desc_for_int + 0x0000000042003664 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_source + 0x00000000420036f0 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x000000004200376e 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_available_int + 0x0000000042003830 0x16a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_enable_source + 0x000000004200399a 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x000000004200399a esp_intr_enable_source + .text.esp_intr_disable_source + 0x00000000420039c0 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x00000000420039c0 esp_intr_disable_source + .text.esp_intr_alloc_intrstatus + 0x00000000420039e6 0x348 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x00000000420039e6 esp_intr_alloc_intrstatus + .text.esp_intr_alloc + 0x0000000042003d2e 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000042003d2e esp_intr_alloc + .text.esp_intr_free + 0x0000000042003d46 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000042003d46 esp_intr_free + .text.esp_sleep_config_gpio_isolate + 0x0000000042003e36 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x0000000042003e36 esp_sleep_config_gpio_isolate + .text.esp_sleep_enable_gpio_switch + 0x0000000042003ea4 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x0000000042003ea4 esp_sleep_enable_gpio_switch + .text.esp_memprot_mem_type_to_str + 0x0000000042003f2a 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042003f2a esp_memprot_mem_type_to_str + .text.esp_memprot_pms_to_str + 0x0000000042003f70 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042003f70 esp_memprot_pms_to_str + .text.esp_memprot_get_default_main_split_addr + 0x0000000042004004 0xa esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042004004 esp_memprot_get_default_main_split_addr + .text.esp_memprot_set_split_line_lock + 0x000000004200400e 0xc esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004200400e esp_memprot_set_split_line_lock + .text.esp_memprot_get_split_line_lock + 0x000000004200401a 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004200401a esp_memprot_get_split_line_lock + .text.esp_memprot_set_split_line + 0x000000004200402a 0x330 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004200402a esp_memprot_set_split_line + .text.esp_memprot_set_pms_lock + 0x000000004200435a 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004200435a esp_memprot_set_pms_lock + .text.esp_memprot_get_pms_lock + 0x00000000420043c2 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x00000000420043c2 esp_memprot_get_pms_lock + .text.esp_memprot_iram_set_pms_area + 0x0000000042004432 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042004432 esp_memprot_iram_set_pms_area + .text.esp_memprot_dram_set_pms_area + 0x0000000042004560 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042004560 esp_memprot_dram_set_pms_area + .text.esp_memprot_set_monitor_lock + 0x0000000042004666 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042004666 esp_memprot_set_monitor_lock + .text.esp_memprot_get_monitor_lock + 0x00000000420046ce 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x00000000420046ce esp_memprot_get_monitor_lock + .text.esp_memprot_set_monitor_en + 0x000000004200473e 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x000000004200473e esp_memprot_set_monitor_en + .text.esp_memprot_set_intr_matrix + 0x00000000420047d6 0xae esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x00000000420047d6 esp_memprot_set_intr_matrix + .text.esp_memprot_set_prot_int + 0x0000000042004884 0x160 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x0000000042004884 esp_memprot_set_prot_int + .text.esp_memprot_set_prot + 0x00000000420049e4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x00000000420049e4 esp_memprot_set_prot + .text.timer_process_alarm + 0x00000000420049f4 0x168 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.timer_task + 0x0000000042004b5c 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_init + 0x0000000042004b72 0x84 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x0000000042004b72 esp_timer_init + .text.esp_timer_impl_init_system_time + 0x0000000042004bf6 0x8e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x0000000042004bf6 esp_timer_impl_init_system_time + .text.esp_timer_impl_init + 0x0000000042004c84 0x128 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x0000000042004c84 esp_timer_impl_init + .text.esp_newlib_locks_init + 0x0000000042004dac 0x98 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000042004dac esp_newlib_locks_init + .text.pthread_setcancelstate + 0x0000000042004e44 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000042004e44 pthread_setcancelstate + .text.newlib_include_pthread_impl + 0x0000000042004e48 0x2 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000042004e48 newlib_include_pthread_impl + .text.raise_r_stub + 0x0000000042004e4a 0xe esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .text.esp_newlib_init + 0x0000000042004e58 0x3e esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x0000000042004e58 esp_newlib_init + 0x0000000042004e58 esp_setup_newlib_syscalls + .text.syscall_not_implemented + 0x0000000042004e96 0x16 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042004e96 _system_r + 0x0000000042004e96 system + 0x0000000042004e96 _getpid_r + 0x0000000042004e96 _kill_r + .text.syscall_not_implemented_aborts + 0x0000000042004eac 0xc esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042004eac _exit + 0x0000000042004eac raise + 0x0000000042004eac _raise_r + 0x0000000042004eac _sbrk_r + .text.newlib_include_syscalls_impl + 0x0000000042004eb8 0x2 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042004eb8 newlib_include_syscalls_impl + .text.adjust_boot_time + 0x0000000042004eba 0x174 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.get_adjusted_boot_time + 0x000000004200502e 0x3e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime_corr_stop + 0x000000004200506c 0x52 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.settimeofday + 0x00000000420050be 0x5c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000420050be settimeofday + .text.esp_newlib_time_init + 0x000000004200511a 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000004200511a esp_newlib_time_init + .text.esp_time_impl_get_time_since_boot + 0x0000000042005126 0x2c esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042005126 esp_time_impl_get_time_since_boot + .text.esp_time_impl_set_boot_time + 0x0000000042005152 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042005152 esp_time_impl_set_boot_time + .text.esp_time_impl_get_boot_time + 0x0000000042005192 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042005192 esp_time_impl_get_boot_time + .text.esp_set_time_from_rtc + 0x00000000420051d2 0x3e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x00000000420051d2 esp_set_time_from_rtc + .text.esp_sync_counters_rtc_and_frc + 0x0000000042005210 0x74 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042005210 esp_sync_counters_rtc_and_frc + .text.esp_time_impl_init + 0x0000000042005284 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042005284 esp_time_impl_init + .text.__cxa_guard_dummy + 0x0000000042005290 0x2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x0000000042005290 __cxa_guard_dummy + .text.app_main + 0x0000000042005292 0xf8 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x0000000042005292 app_main + .text.esp_efuse_get_chip_ver + 0x000000004200538a 0x20 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x000000004200538a esp_efuse_get_chip_ver + .text.esp_efuse_read_field_blob + 0x00000000420053aa 0x7e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x00000000420053aa esp_efuse_read_field_blob + .text.esp_efuse_get_field_size + 0x0000000042005428 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000042005428 esp_efuse_get_field_size + .text.get_mask + 0x0000000042005448 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_reg_num + 0x0000000042005464 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_starting_bit_num_in_reg + 0x000000004200548a 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_count_bits_in_reg + 0x000000004200549e 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.check_range_of_bits + 0x00000000420054d2 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000420054e4 0x18a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000420054e4 esp_efuse_utility_process + .text.esp_efuse_utility_get_number_of_items + 0x000000004200566e 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000004200566e esp_efuse_utility_get_number_of_items + .text.esp_efuse_utility_read_reg + 0x000000004200567e 0x6e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000004200567e esp_efuse_utility_read_reg + .text.esp_efuse_utility_fill_buff + 0x00000000420056ec 0xea esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000420056ec esp_efuse_utility_fill_buff + .text.esp_efuse_utility_count_once + 0x00000000420057d6 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000420057d6 esp_efuse_utility_count_once + .text.gpio_sleep_input_enable + 0x000000004200582e 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x00000000420058ac 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x0000000042005928 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x00000000420059a6 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x0000000042005a22 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x0000000042005ab6 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x0000000042005b4a 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x0000000042005bdc 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x0000000042005c6e 0x9c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x0000000042005c6e gpio_sleep_set_direction + .text.gpio_sleep_set_pull_mode + 0x0000000042005d0a 0x13e esp-idf/driver/libdriver.a(gpio.c.obj) + 0x0000000042005d0a gpio_sleep_set_pull_mode + .text.gpio_sleep_sel_en + 0x0000000042005e48 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x0000000042005e48 gpio_sleep_sel_en + .text.gpio_sleep_sel_dis + 0x0000000042005edc 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x0000000042005edc gpio_sleep_sel_dis + .text.periph_ll_get_clk_en_reg + 0x0000000042005f6e 0x32 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_ll_get_rst_en_reg + 0x0000000042005fa0 0x32 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_enable + 0x0000000042005fd2 0x2e0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x0000000042005fd2 periph_module_enable + .text.uart_pattern_queue_update + 0x00000000420062b2 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_intr_mask_and_return_prev + 0x0000000042006302 0x8a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_word_length + 0x000000004200638c 0xb2 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000004200638c uart_set_word_length + .text.uart_get_word_length + 0x000000004200643e 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000004200643e uart_get_word_length + .text.uart_set_stop_bits + 0x0000000042006494 0xb2 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006494 uart_set_stop_bits + .text.uart_get_stop_bits + 0x0000000042006546 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006546 uart_get_stop_bits + .text.uart_set_parity + 0x000000004200659c 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000004200659c uart_set_parity + .text.uart_get_parity + 0x0000000042006610 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006610 uart_get_parity + .text.uart_set_baudrate + 0x0000000042006666 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006666 uart_set_baudrate + .text.uart_get_baudrate + 0x00000000420066da 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420066da uart_get_baudrate + .text.uart_enable_intr_mask + 0x000000004200674e 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000004200674e uart_enable_intr_mask + .text.uart_wait_tx_done + 0x00000000420067c8 0x1e4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420067c8 uart_wait_tx_done + .text.uart_get_buffered_data_len + 0x00000000420069ac 0x98 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420069ac uart_get_buffered_data_len + .text.uart_flush_input + 0x0000000042006a44 0x244 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006a44 uart_flush + 0x0000000042006a44 uart_flush_input + .text.uart_is_driver_installed + 0x0000000042006c88 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006c88 uart_is_driver_installed + .text.uart_set_select_notif_callback + 0x0000000042006caa 0x1e esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006caa uart_set_select_notif_callback + .text.uart_get_selectlock + 0x0000000042006cc8 0x6 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042006cc8 uart_get_selectlock + .text.esp_pm_impl_waiti + 0x0000000042006cce 0x1c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + 0x0000000042006cce esp_pm_impl_waiti + .text.bootloader_init_mem + 0x0000000042006cea 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x0000000042006cea bootloader_init_mem + .text.bootloader_flash_update_id + 0x0000000042006cf8 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + 0x0000000042006cf8 bootloader_flash_update_id + .text.bootloader_read_flash_id + 0x0000000042006d12 0x3a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x0000000042006d12 bootloader_read_flash_id + .text.spi_flash_init_lock + 0x0000000042006d4c 0x2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000042006d4c spi_flash_init_lock + .text.spi_flash_op_lock + 0x0000000042006d4e 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000042006d4e spi_flash_op_lock + .text.spi_flash_op_unlock + 0x0000000042006d60 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000042006d60 spi_flash_op_unlock + .text.spi_flash_cache2phys + 0x0000000042006d72 0xb6 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000042006d72 spi_flash_cache2phys + .text.is_safe_write_address + 0x0000000042006e28 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text.spi_flash_init + 0x0000000042006e40 0xe esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000042006e40 spi_flash_init + .text.esp_flash_chip_driver_initialized + 0x0000000042006e4e 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000042006e4e esp_flash_chip_driver_initialized + .text.check_chip_pointer_default + 0x0000000042006e5a 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_chip_id + 0x0000000042006e8c 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000042006e8c esp_flash_read_chip_id + .text.esp_flash_init_default_chip + 0x0000000042006ea0 0x100 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x0000000042006ea0 esp_flash_init_default_chip + .text.esp_flash_app_init + 0x0000000042006fa0 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x0000000042006fa0 esp_flash_app_init + .text.esp_flash_app_enable_os_functions + 0x0000000042006fb0 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x0000000042006fb0 esp_flash_app_enable_os_functions + .text.load_partitions + 0x0000000042006fd2 0x1f2 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.ensure_partitions_loaded + 0x00000000420071c4 0x7e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.iterator_create + 0x0000000042007242 0x3c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x000000004200727e 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x000000004200727e esp_partition_iterator_release + .text.esp_partition_next + 0x0000000042007290 0xb2 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x0000000042007290 esp_partition_next + .text.esp_partition_find + 0x0000000042007342 0x44 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x0000000042007342 esp_partition_find + .text.esp_partition_get + 0x0000000042007386 0x2a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x0000000042007386 esp_partition_get + .text.esp_partition_main_flash_region_safe + 0x00000000420073b0 0x50 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000420073b0 esp_partition_main_flash_region_safe + .text.esp_crosscore_int_init + 0x0000000042007400 0x6a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x0000000042007400 esp_crosscore_int_init + .text.esp_vApplicationIdleHook + 0x000000004200746a 0x42 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x000000004200746a esp_vApplicationIdleHook + .text.esp_register_freertos_idle_hook_for_cpu + 0x00000000420074ac 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x00000000420074ac esp_register_freertos_idle_hook_for_cpu + .text.esp_register_freertos_tick_hook_for_cpu + 0x000000004200751c 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x000000004200751c esp_register_freertos_tick_hook_for_cpu + .text.esp_int_wdt_init + 0x000000004200758c 0x80 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x000000004200758c esp_int_wdt_init + .text.esp_int_wdt_cpu_init + 0x000000004200760c 0x4e esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x000000004200760c esp_int_wdt_cpu_init + .text.find_task_in_twdt_list + 0x000000004200765a 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.reset_hw_timer + 0x000000004200768a 0x4a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_isr_user_handler + 0x00000000420076d4 0x2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x00000000420076d4 esp_task_wdt_isr_user_handler + .text.task_wdt_isr + 0x00000000420076d6 0x1e0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_init + 0x00000000420078b6 0x1ca esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x00000000420078b6 esp_task_wdt_init + .text.esp_task_wdt_add + 0x0000000042007a80 0x102 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x0000000042007a80 esp_task_wdt_add + .text.esp_task_wdt_reset + 0x0000000042007b82 0x66 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x0000000042007b82 esp_task_wdt_reset + .text.idle_hook_cb + 0x0000000042007be8 0x10 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.uart_hal_set_baudrate + 0x0000000042007bf8 0x90 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007bf8 uart_hal_set_baudrate + .text.uart_hal_get_baudrate + 0x0000000042007c88 0x68 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007c88 uart_hal_get_baudrate + .text.uart_hal_set_stop_bits + 0x0000000042007cf0 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007cf0 uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x0000000042007d02 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007d02 uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x0000000042007d0e 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007d0e uart_hal_set_data_bit_num + .text.uart_hal_get_data_bit_num + 0x0000000042007d1e 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007d1e uart_hal_get_data_bit_num + .text.uart_hal_set_parity + 0x0000000042007d2a 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007d2a uart_hal_set_parity + .text.uart_hal_get_parity + 0x0000000042007d4a 0x1c esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042007d4a uart_hal_get_parity + .text.spi_flash_hal_init + 0x0000000042007d66 0x106 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000042007d66 spi_flash_hal_init + .text.spi_flash_hal_supports_direct_write + 0x0000000042007e6c 0x28 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000042007e6c spi_flash_hal_supports_direct_write + .text.spi_flash_hal_supports_direct_read + 0x0000000042007e94 0x28 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000042007e94 spi_flash_hal_supports_direct_read + .text.is_interrupt_number_reserved + 0x0000000042007ebc 0x3e esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .text.interrupt_controller_hal_desc_level + 0x0000000042007efa 0x4 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x0000000042007efa interrupt_controller_hal_desc_level + .text.interrupt_controller_hal_desc_flags + 0x0000000042007efe 0xe esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x0000000042007efe interrupt_controller_hal_desc_flags + .text.esp_cpu_configure_region_protection + 0x0000000042007f0c 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + 0x0000000042007f0c esp_cpu_configure_region_protection + .text.esp_chip_info + 0x0000000042008006 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x0000000042008006 esp_chip_info + .text.riscv_decode_offset_from_jal_instruction + 0x000000004200804c 0x4a esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + 0x000000004200804c riscv_decode_offset_from_jal_instruction + .text.esp_err_to_name + 0x0000000042008096 0x38 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x0000000042008096 esp_err_to_name + .text.esp_ota_get_running_partition + 0x00000000420080ce 0xba esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x00000000420080ce esp_ota_get_running_partition + *fill* 0x0000000042008188 0x0 + .text 0x0000000042008188 0x7c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + 0x0000000042008188 __assert_func + 0x00000000420081f0 __assert + .text 0x0000000042008204 0x1c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + 0x0000000042008204 __errno + .text 0x0000000042008220 0x358 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + 0x0000000042008220 __sflush_r + 0x000000004200843c _fflush_r + 0x000000004200853c fflush + .text 0x0000000042008578 0x410 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + 0x0000000042008604 _cleanup_r + 0x0000000042008698 __sfmoreglue + 0x000000004200870c _cleanup + 0x0000000042008718 __sfp_lock_acquire + 0x0000000042008728 __sfp_lock_release + 0x0000000042008738 __sinit_lock_acquire + 0x0000000042008748 __sinit_lock_release + 0x0000000042008758 __sinit + 0x0000000042008808 __sfp + 0x0000000042008938 __fp_lock_all + 0x0000000042008960 __fp_unlock_all + .text 0x0000000042008988 0x94 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + 0x0000000042008988 _fiprintf_r + 0x00000000420089bc fiprintf + .text 0x0000000042008a1c 0x1a0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + 0x0000000042008a1c _fopen_r + 0x0000000042008b88 fopen + .text 0x0000000042008bbc 0x44 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + 0x0000000042008bbc _fseek_r + 0x0000000042008bc0 fseek + .text 0x0000000042008c00 0x4f0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + 0x0000000042008c00 _fseeko_r + 0x00000000420090b0 fseeko + .text 0x00000000420090f0 0x1e8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + 0x00000000420090f0 _ftello_r + 0x00000000420092b4 ftello + .text 0x00000000420092d8 0x484 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + 0x00000000420092d8 __sfvwrite_r + .text 0x000000004200975c 0x154 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + 0x000000004200975c _fwalk + 0x00000000420097fc _fwalk_reent + .text 0x00000000420098b0 0x1b4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + 0x00000000420098b0 __swhatbuf_r + 0x000000004200996c __smakebuf_r + .text 0x0000000042009a64 0xe0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + 0x0000000042009a64 _printf_r + 0x0000000042009acc printf + .text 0x0000000042009b44 0x174 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + 0x0000000042009b44 _puts_r + 0x0000000042009c94 puts + .text 0x0000000042009cb8 0x1f4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + 0x0000000042009cb8 cleanup_glue + 0x0000000042009cfc _reclaim_reent + .text 0x0000000042009eac 0x200 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + 0x0000000042009ec8 __srefill_r + .text 0x000000004200a0ac 0x13c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + 0x000000004200a0ac __sread + 0x000000004200a0fc __seofread + 0x000000004200a104 __swrite + 0x000000004200a188 __sseek + 0x000000004200a1e0 __sclose + .text 0x000000004200a1e8 0x38 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + 0x000000004200a1e8 gettimeofday + .text 0x000000004200a220 0x261c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + 0x000000004200a7f4 __sprint_r + 0x000000004200a834 _vfiprintf_r + 0x000000004200c714 vfiprintf + .text 0x000000004200c83c 0x3980 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + 0x000000004200ce10 _vfprintf_r + 0x0000000042010094 vfprintf + .text 0x00000000420101bc 0xb0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + 0x00000000420101bc vprintf + 0x000000004201021c _vprintf_r + .text 0x000000004201026c 0x180 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + 0x000000004201026c __swsetup_r + .text 0x00000000420103ec 0x14c0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + 0x00000000420105b4 _dtoa_r + .text 0x00000000420118ac 0x1c8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + 0x00000000420118ac _fclose_r + 0x0000000042011a50 fclose + .text 0x0000000042011a74 0xa8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + 0x0000000042011a74 __sflags + .text 0x0000000042011b1c 0x28 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + 0x0000000042011b1c __localeconv_l + 0x0000000042011b24 _localeconv_r + 0x0000000042011b34 localeconv + .text 0x0000000042011b44 0x109c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + 0x0000000042011b44 _Balloc + 0x0000000042011c50 _Bfree + 0x0000000042011ce4 __multadd + 0x0000000042011e08 __s2b + 0x0000000042011f34 __hi0bits + 0x0000000042011fa4 __lo0bits + 0x0000000042012054 __i2b + 0x00000000420120a8 __multiply + 0x0000000042012288 __pow5mult + 0x00000000420123d0 __lshift + 0x000000004201252c __mcmp + 0x0000000042012580 __mdiff + 0x0000000042012728 __ulp + 0x0000000042012784 __b2d + 0x0000000042012888 __d2b + 0x00000000420129e4 __ratio + 0x0000000042012aa4 _mprec_log10 + 0x0000000042012b28 __copybits + 0x0000000042012b78 __any_on + .text 0x0000000042012be0 0xb4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + 0x0000000042012be0 frexp + .text 0x0000000042012c94 0x2548 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + 0x000000004201324c __ssprint_r + 0x0000000042013428 _svfiprintf_r + .text 0x00000000420151dc 0x6c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + 0x00000000420151dc _mbtowc_r + 0x00000000420151ec __ascii_mbtowc + .text 0x0000000042015248 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + 0x0000000042015248 _wctomb_r + 0x0000000042015258 __ascii_wctomb + .text 0x0000000042015288 0x350 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + 0x0000000042015288 __trunctfdf2 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *libesp_event.a:default_event_loop.*(.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 .text.esp_event_send_to_default_loop) + *libesp_event.a:esp_event.*(.text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *libesp_hw_support.a:rtc_init.*(.text .text.calibrate_ocode .text.get_dig_dbias_by_efuse .text.get_rtc_dbias_by_efuse .text.rtc_init .text.rtc_vddsdio_get_config .text.set_ocode_by_efuse .text.set_rtc_dig_dbias) + .text.set_ocode_by_efuse + 0x00000000420155d8 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.get_dig_dbias_by_efuse + 0x0000000042015662 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.calibrate_ocode + 0x00000000420156da 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.get_rtc_dbias_by_efuse + 0x0000000042015808 0x16e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x0000000042015808 get_rtc_dbias_by_efuse + .text.set_rtc_dig_dbias + 0x0000000042015976 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_init + 0x00000000420159ea 0x402 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x00000000420159ea rtc_init + *libesp_system.a:esp_system.*(.text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size .text.esp_register_shutdown_handler .text.esp_unregister_shutdown_handler) + .text.esp_register_shutdown_handler + 0x0000000042015dec 0x40 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x0000000042015dec esp_register_shutdown_handler + .text.esp_get_minimum_free_heap_size + 0x0000000042015e2c 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x0000000042015e2c esp_get_minimum_free_heap_size + *libfreertos.a:port.*(.literal.esp_startup_start_app .text.esp_startup_start_app) + .text.esp_startup_start_app + 0x0000000042015e3c 0x42 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000042015e3c esp_startup_start_app + *libfreertos.a:port_common.*(.literal.main_task .text.main_task) + .text.main_task + 0x0000000042015e7e 0x80 esp-idf/freertos/libfreertos.a(port_common.c.obj) + *liblog.a:log.*(.text .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.heap_bubble_down .text.s_log_level_get_and_unlock) + .text.heap_bubble_down + 0x0000000042015efe 0x62 esp-idf/log/liblog.a(log.c.obj) + .text.s_log_level_get_and_unlock + 0x0000000042015f60 0x18e esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_writev + 0x00000000420160ee 0x42 esp-idf/log/liblog.a(log.c.obj) + 0x00000000420160ee esp_log_writev + *liblog.a:log_freertos.*(.text .text.esp_log_system_timestamp) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x0000000042016140 . = (. + 0x10) + *fill* 0x0000000042016130 0x10 + 0x0000000042016140 _text_end = ABSOLUTE (.) + 0x0000000042016140 _instruction_reserved_end = ABSOLUTE (.) + 0x0000000042016140 _etext = . + 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) + +.flash_rodata_dummy + 0x000000003c000020 0x20000 + 0x000000003c000020 _flash_rodata_dummy_start = . + 0x000000003c000020 . = ALIGN (ALIGNOF (.flash.text)) + 0x000000003c016140 . = (. + SIZEOF (.flash.text)) + *fill* 0x000000003c000020 0x16120 + 0x000000003c020020 . = (ALIGN (0x10000) + 0x20) + *fill* 0x000000003c016140 0x9ee0 + 0x000000003c020020 _rodata_reserved_start = . + +.flash.appdesc 0x000000003c020020 0x100 + 0x000000003c020020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x000000003c020020 0x100 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000003c020020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x000000003c020120 . = ALIGN (ALIGNOF (.flash.rodata)) + +.flash.rodata 0x000000003c020120 0x66f0 + 0x000000003c020120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_clk.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_clk.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata.*) + .rodata.str1.4 + 0x000000003c020120 0x9e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003c0201be 0x2 + .rodata.__func__.5670 + 0x000000003c0201c0 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x000000003c0201cd 0x3 + .rodata.esp_clk_init.str1.4 + 0x000000003c0201d0 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x000000003c020238 0x5b esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x000000003c020293 0x1 + .rodata.__func__.12324 + 0x000000003c020294 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003c0202a1 0x3 + .rodata.do_core_init.str1.4 + 0x000000003c0202a4 0x7c esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x80 (size before relaxing) + .rodata.start_cpu0_default.str1.4 + 0x000000003c020320 0x168 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x174 (size before relaxing) + .rodata.esp_panic_handler.str1.4 + 0x000000003c020488 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000003c02050b 0x1 + .rodata.frame_to_panic_info.str1.4 + 0x000000003c02050c 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x000000003c020514 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata 0x000000003c020514 0xdc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x000000003c0205f0 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c020609 0x3 + .rodata.panic_print_basic_backtrace.str1.4 + 0x000000003c02060c 0x12 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x23 (size before relaxing) + *fill* 0x000000003c02061e 0x2 + .rodata.panic_print_registers.str1.4 + 0x000000003c020620 0x1b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x23 (size before relaxing) + *fill* 0x000000003c02063b 0x1 + .rodata.panic_soc_fill_info.str1.4 + 0x000000003c02063c 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_cache_err_details.str1.4 + 0x000000003c020670 0x4b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c0206bb 0x1 + .rodata.print_memprot_err_details.str1.4 + 0x000000003c0206bc 0x63 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c02071f 0x1 + .rodata.pseudo_reason.3514 + 0x000000003c020720 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason.3521 + 0x000000003c020730 0x40 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x000000003c020770 0x449 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c020bb9 0x3 + .rodata.__func__.6228 + 0x000000003c020bbc 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003c020bcb 0x1 + .rodata.translate_path.str1.4 + 0x000000003c020bcc 0x5d esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003c020c29 0x3 + .rodata.__func__.7373 + 0x000000003c020c2c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c37 0x1 + .rodata.__func__.7389 + 0x000000003c020c38 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c49 0x3 + .rodata.__func__.7395 + 0x000000003c020c4c 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c56 0x2 + .rodata.__func__.7407 + 0x000000003c020c58 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c63 0x1 + .rodata.__func__.7411 + 0x000000003c020c64 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c6f 0x1 + .rodata.__func__.7417 + 0x000000003c020c70 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c7b 0x1 + .rodata.__func__.7427 + 0x000000003c020c7c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020c87 0x1 + .rodata.__func__.7626 + 0x000000003c020c88 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020ca2 0x2 + .rodata.esp_vfs_dev_uart_register.str1.4 + 0x000000003c020ca4 0x36 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020cda 0x2 + .rodata.uart_access.str1.4 + 0x000000003c020cdc 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020ce7 0x1 + .rodata.uart_fcntl.str1.4 + 0x000000003c020ce8 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d1a 0x2 + .rodata.uart_fsync.str1.4 + 0x000000003c020d1c 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d2e 0x2 + .rodata.uart_return_char.str1.4 + 0x000000003c020d30 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d4d 0x3 + .rodata.__func__.3664 + 0x000000003c020d50 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c020d65 0x3 + .rodata.s_log_level_get_and_unlock.str1.4 + 0x000000003c020d68 0x65 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c020dcd 0x3 + .rodata.__func__.4362 + 0x000000003c020dd0 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__.4381 + 0x000000003c020de8 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020df9 0x3 + .rodata.__func__.4449 + 0x000000003c020dfc 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020e0b 0x1 + .rodata.__func__.4458 + 0x000000003c020e0c 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020e1e 0x2 + .rodata.str1.4 + 0x000000003c020e20 0x119 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020f39 0x3 + .rodata.__func__.4372 + 0x000000003c020f3c 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c020f4a 0x2 + .rodata.__func__.4403 + 0x000000003c020f4c 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c020f5b 0x1 + .rodata.heap_caps_init.str1.4 + 0x000000003c020f5c 0xf4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.register_heap.str1.4 + 0x000000003c021050 0x41 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c021091 0x3 + .rodata.__func__.2850 + 0x000000003c021094 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x000000003c0210af 0x1 + .rodata.s_prepare_reserved_regions.str1.4 + 0x000000003c0210b0 0x100 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .rodata.soc_memory_regions + 0x000000003c0211b0 0x40 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c0211b0 soc_memory_regions + .rodata.soc_memory_types + 0x000000003c0211f0 0x64 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c0211f0 soc_memory_types + .rodata.str1.4 + 0x000000003c021254 0x2b esp-idf/heap/libheap.a(memory_layout.c.obj) + *fill* 0x000000003c02127f 0x1 + .rodata.__func__.4849 + 0x000000003c021280 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c021295 0x3 + .rodata.__func__.4873 + 0x000000003c021298 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__.4940 + 0x000000003c0212ac 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0212ba 0x2 + .rodata.__func__.4960 + 0x000000003c0212bc 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0212cd 0x3 + .rodata.esp_intr_free.str1.4 + 0x000000003c0212d0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x000000003c0212d4 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c02130b 0x1 + .rodata.is_vect_desc_usable.str1.4 + 0x000000003c02130c 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c02134f 0x1 + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x000000003c021350 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x000000003c0213a1 0x3 + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x000000003c0213a4 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x000000003c0213fe 0x2 + .rodata 0x000000003c021400 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c02140a 0x2 + .rodata.__func__.4007 + 0x000000003c02140c 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c02141f 0x1 + .rodata.__func__.4031 + 0x000000003c021420 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c021437 0x1 + .rodata.__func__.4038 + 0x000000003c021438 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c02144f 0x1 + .rodata.calibrate_ocode.str1.4 + 0x000000003c021450 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata.get_dig_dbias_by_efuse.str1.4 + 0x000000003c021480 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0214e9 0x3 + .rodata.get_rtc_dbias_by_efuse.str1.4 + 0x000000003c0214ec 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c021557 0x1 + .rodata.rtc_init.str1.4 + 0x000000003c021558 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0215a3 0x1 + .rodata.set_ocode_by_efuse.str1.4 + 0x000000003c0215a4 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0215fe 0x2 + .rodata.__func__.3340 + 0x000000003c021600 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .rodata.__func__.3473 + 0x000000003c021620 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .rodata.__func__.4136 + 0x000000003c021640 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + *fill* 0x000000003c02165b 0x1 + .rodata.esp_memprot_iram_set_pms_area.str1.4 + 0x000000003c02165c 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .rodata.esp_memprot_mem_type_to_str.str1.4 + 0x000000003c021688 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x29 (size before relaxing) + .rodata.esp_memprot_pms_to_str.str1.4 + 0x000000003c0216a4 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + *fill* 0x000000003c021781 0x3 + .rodata.esp_memprot_set_split_line.str1.4 + 0x000000003c021784 0x161 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + *fill* 0x000000003c0218e5 0x3 + .rodata.str1.4 + 0x000000003c0218e8 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + *fill* 0x000000003c021927 0x1 + .rodata.__func__.2295 + 0x000000003c021928 0x18 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .rodata.intr_handler_set.str1.4 + 0x000000003c021940 0x71 esp-idf/riscv/libriscv.a(interrupt.c.obj) + *fill* 0x000000003c0219b1 0x3 + .rodata.__func__.4902 + 0x000000003c0219b4 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c0219c1 0x3 + .rodata.esp_timer_init.str1.4 + 0x000000003c0219c4 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c0219ce 0x2 + .rodata.str1.4 + 0x000000003c0219d0 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c021a01 0x3 + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x000000003c021a04 0x50 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x000000003c021a54 0x7d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x000000003c021ad1 0x3 + .rodata.__func__.5256 + 0x000000003c021ad4 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c021ae5 0x3 + .rodata.esp_startup_start_app.str1.4 + 0x000000003c021ae8 0x2b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x37 (size before relaxing) + *fill* 0x000000003c021b13 0x1 + .rodata.prvTaskExitError.str1.4 + 0x000000003c021b14 0x46 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c021b5a 0x2 + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000003c021b5c 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__.4676 + 0x000000003c021b98 0x1d esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c021bb5 0x3 + .rodata.__func__.4681 + 0x000000003c021bb8 0xa esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c021bc2 0x2 + .rodata.esp_startup_start_app_common.str1.4 + 0x000000003c021bc4 0x16 esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c021bda 0x2 + .rodata.main_task.str1.4 + 0x000000003c021bdc 0x7d esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c021c59 0x3 + .rodata.__func__.5116 + 0x000000003c021c5c 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.vPortSetupTimer.str1.4 + 0x000000003c021c6c 0xb0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.__func__.4728 + 0x000000003c021d1c 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021d2f 0x1 + .rodata.__func__.4737 + 0x000000003c021d30 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021d4a 0x2 + .rodata.__func__.4747 + 0x000000003c021d4c 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4786 + 0x000000003c021d60 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021d79 0x3 + .rodata.__func__.4793 + 0x000000003c021d7c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021d95 0x3 + .rodata.__func__.4817 + 0x000000003c021d98 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021daa 0x2 + .rodata.__func__.4838 + 0x000000003c021dac 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021dbe 0x2 + .rodata.__func__.4860 + 0x000000003c021dc0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__.4884 + 0x000000003c021dd4 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021de9 0x3 + .rodata.__func__.4918 + 0x000000003c021dec 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021df9 0x3 + .rodata.__func__.5002 + 0x000000003c021dfc 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021e17 0x1 + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x000000003c021e18 0x7b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021e93 0x1 + .rodata.xQueueGenericCreate.str1.4 + 0x000000003c021e94 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021f22 0x2 + .rodata.xQueueGenericCreateStatic.str1.4 + 0x000000003c021f24 0xdf esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c022003 0x1 + .rodata.xQueueGenericReset.str1.4 + 0x000000003c022004 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericSend.str1.4 + 0x000000003c02200c 0x195 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c0221a1 0x3 + .rodata.xQueueGiveFromISR.str1.4 + 0x000000003c0221a4 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c022221 0x3 + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x000000003c022224 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceive.str1.4 + 0x000000003c02222c 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c022292 0x2 + .rodata.xQueueReceiveFromISR.str1.4 + 0x000000003c022294 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c0222e6 0x2 + .rodata.xQueueSemaphoreTake.str1.4 + 0x000000003c0222e8 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c022315 0x3 + .rodata.__func__.4758 + 0x000000003c022318 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4770 + 0x000000003c022324 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02232f 0x1 + .rodata.__func__.4831 + 0x000000003c022330 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.4849 + 0x000000003c022344 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022353 0x1 + .rodata.__func__.4872 + 0x000000003c022354 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022362 0x2 + .rodata.__func__.4880 + 0x000000003c022364 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022381 0x3 + .rodata.__func__.4894 + 0x000000003c022384 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022397 0x1 + .rodata.__func__.4929 + 0x000000003c022398 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0223ae 0x2 + .rodata.__func__.4950 + 0x000000003c0223b0 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0223c9 0x3 + .rodata.__func__.4973 + 0x000000003c0223cc 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0223e1 0x3 + .rodata.__func__.5052 + 0x000000003c0223e4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0223f1 0x3 + .rodata.__func__.5056 + 0x000000003c0223f4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022401 0x3 + .rodata.__func__.5088 + 0x000000003c022404 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.5097 + 0x000000003c02241c 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__.5159 + 0x000000003c022440 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022457 0x1 + .rodata.prvDeleteTCB.str1.4 + 0x000000003c022458 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02248a 0x2 + .rodata.prvDeleteTLS.str1.4 + 0x000000003c02248c 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.ucExpectedStackBytes.4901 + 0x000000003c0224b4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskDelayUntil.str1.4 + 0x000000003c0224c8 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskDelete.str1.4 + 0x000000003c022520 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022551 0x3 + .rodata.vTaskPlaceOnEventList.str1.4 + 0x000000003c022554 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x000000003c022560 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetTimeOutState.str1.4 + 0x000000003c022588 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022592 0x2 + .rodata.vTaskStartScheduler.str1.4 + 0x000000003c022594 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0225ae 0x2 + .rodata.xTaskCheckForTimeOut.str1.4 + 0x000000003c0225b0 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0225be 0x2 + .rodata.xTaskGenericNotify.str1.4 + 0x000000003c0225c0 0x6f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02262f 0x1 + .rodata.xTaskGetIdleTaskHandleForCPU.str1.4 + 0x000000003c022630 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022666 0x2 + .rodata.xTaskIncrementTick.str1.4 + 0x000000003c022668 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0226de 0x2 + .rodata.xTaskPriorityDisinherit.str1.4 + 0x000000003c0226e0 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02271d 0x3 + .rodata.xTaskRemoveFromEventList.str1.4 + 0x000000003c022720 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02272f 0x1 + .rodata.xTaskResumeAll.str1.4 + 0x000000003c022730 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02277b 0x1 + .rodata.__func__.4455 + 0x000000003c02277c 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__.4464 + 0x000000003c022788 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c02279d 0x3 + .rodata.__func__.4484 + 0x000000003c0227a0 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c0227b5 0x3 + .rodata.__func__.4509 + 0x000000003c0227b8 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c0227cb 0x1 + .rodata.__func__.4541 + 0x000000003c0227cc 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c0227e2 0x2 + .rodata.esp_newlib_locks_init.str1.4 + 0x000000003c0227e4 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.str1.4 + 0x000000003c02284c 0x91 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c0228dd 0x3 + .rodata.app_main.str1.4 + 0x000000003c0228e0 0xe8 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0xec (size before relaxing) + .rodata.__func__.3945 + 0x000000003c0229c8 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c0229e2 0x2 + .rodata.__func__.4040 + 0x000000003c0229e4 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c0229ff 0x1 + .rodata.esp_efuse_utility_process.str1.4 + 0x000000003c022a00 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c022a69 0x3 + .rodata.set_cnt_in_reg.str1.4 + 0x000000003c022a6c 0x61 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003c022acd 0x3 + .rodata.write_reg.str1.4 + 0x000000003c022ad0 0x84 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x000000003c022b54 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003c022b54 range_read_addr_blocks + .rodata.__FUNCTION__.6207 + 0x000000003c022bac 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022bc1 0x3 + .rodata.__FUNCTION__.6211 + 0x000000003c022bc4 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022bda 0x2 + .rodata.__FUNCTION__.6215 + 0x000000003c022bdc 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022bf3 0x1 + .rodata.__FUNCTION__.6219 + 0x000000003c022bf4 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6223 + 0x000000003c022c0c 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022c25 0x3 + .rodata.__FUNCTION__.6227 + 0x000000003c022c28 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__.6231 + 0x000000003c022c40 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022c5a 0x2 + .rodata.__FUNCTION__.6235 + 0x000000003c022c5c 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022c75 0x3 + .rodata.__FUNCTION__.6240 + 0x000000003c022c78 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022c91 0x3 + .rodata.__FUNCTION__.6246 + 0x000000003c022c94 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022cad 0x3 + .rodata.__FUNCTION__.6257 + 0x000000003c022cb0 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022cc2 0x2 + .rodata.__FUNCTION__.6261 + 0x000000003c022cc4 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022cd7 0x1 + .rodata.gpio_input_enable.str1.4 + 0x000000003c022cd8 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022d16 0x2 + .rodata.gpio_set_pull_mode.str1.4 + 0x000000003c022d18 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022d75 0x3 + .rodata.gpio_sleep_output_enable.str1.4 + 0x000000003c022d78 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003c022d93 0x1 + .rodata.__func__.4238 + 0x000000003c022d94 0x15 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x000000003c022da9 0x3 + .rodata.periph_module_enable.str1.4 + 0x000000003c022dac 0x40 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.__FUNCTION__.7153 + 0x000000003c022dec 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022e01 0x3 + .rodata.__FUNCTION__.7158 + 0x000000003c022e04 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022e19 0x3 + .rodata.__FUNCTION__.7163 + 0x000000003c022e1c 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022e2f 0x1 + .rodata.__FUNCTION__.7168 + 0x000000003c022e30 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022e43 0x1 + .rodata.__FUNCTION__.7173 + 0x000000003c022e44 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7178 + 0x000000003c022e54 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__.7183 + 0x000000003c022e64 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022e76 0x2 + .rodata.__FUNCTION__.7188 + 0x000000003c022e78 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022e8a 0x2 + .rodata.__FUNCTION__.7222 + 0x000000003c022e8c 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022ea2 0x2 + .rodata.__FUNCTION__.7394 + 0x000000003c022ea4 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022eb6 0x2 + .rodata.__FUNCTION__.7459 + 0x000000003c022eb8 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022ed3 0x1 + .rodata.__FUNCTION__.7467 + 0x000000003c022ed4 0x27 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022efb 0x1 + .rodata.__FUNCTION__.7471 + 0x000000003c022efc 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022f0d 0x3 + .rodata.uart_disable_intr_mask_and_return_prev.str1.4 + 0x000000003c022f10 0x36 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022f46 0x2 + .rodata.uart_flush_input.str1.4 + 0x000000003c022f48 0x2d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022f75 0x3 + .rodata.uart_pattern_pop_pos.str1.4 + 0x000000003c022f78 0x31 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022fa9 0x3 + .rodata.uart_set_stop_bits.str1.4 + 0x000000003c022fac 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022fda 0x2 + .rodata.uart_set_word_length.str1.4 + 0x000000003c022fdc 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c02300a 0x2 + .rodata.__func__.5389 + 0x000000003c02300c 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c023021 0x3 + .rodata.__func__.5398 + 0x000000003c023024 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c023035 0x3 + .rodata.str1.4 + 0x000000003c023038 0xca esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c023102 0x2 + .rodata.TAG 0x000000003c023104 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c02310e 0x2 + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x000000003c023110 0x91 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c0231a1 0x3 + .rodata.io_mode_str + 0x000000003c0231a4 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c0231ce 0x2 + .rodata.str1.4 + 0x000000003c0231d0 0x235 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c023405 0x3 + .rodata.TAG 0x000000003c023408 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003c023412 0x2 + .rodata.esp_flash_init_default_chip.str1.4 + 0x000000003c023414 0xfb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003c02350f 0x1 + .rodata.__func__.6419 + 0x000000003c023510 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003c02352a 0x2 + .rodata.str1.4 + 0x000000003c02352c 0x45 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003c023571 0x3 + .rodata.__func__.4508 + 0x000000003c023574 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c023587 0x1 + .rodata.__func__.4557 + 0x000000003c023588 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c02359a 0x2 + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003c02359c 0x35 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c0235d1 0x3 + .rodata.esp_partition_get.str1.4 + 0x000000003c0235d4 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c0235e5 0x3 + .rodata.esp_partition_next.str1.4 + 0x000000003c0235e8 0x29 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c023611 0x3 + .rodata.load_partitions.str1.4 + 0x000000003c023614 0x78 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__.4202 + 0x000000003c02368c 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c0236a3 0x1 + .rodata.__func__.4207 + 0x000000003c0236a4 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c0236bb 0x1 + .rodata.esp_crosscore_int_init.str1.4 + 0x000000003c0236bc 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.str1.4 + 0x000000003c0236c0 0x46 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c023706 0x2 + .rodata.__func__.6499 + 0x000000003c023708 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c02371a 0x2 + .rodata.__func__.6516 + 0x000000003c02371c 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c02372d 0x3 + .rodata.esp_task_wdt_add.str1.4 + 0x000000003c023730 0x39 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c023769 0x3 + .rodata.esp_task_wdt_init.str1.4 + 0x000000003c02376c 0x85 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c0237f1 0x3 + .rodata.task_wdt_isr.str1.4 + 0x000000003c0237f4 0xfd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c0238f1 0x3 + .rodata.spi_flash_clk_cfg_reg + 0x000000003c0238f4 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.spi_flash_gpspi_clk_cfg_reg + 0x000000003c023924 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x000000003c023954 0x58 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x000000003c023954 GPIO_PIN_MUX_REG + .rodata.esp_err_msg_table + 0x000000003c0239ac 0x628 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x000000003c023fd4 0x1571 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003c025545 0x3 + .rodata.__func__.4895 + 0x000000003c025548 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c025557 0x1 + .rodata.__func__.5014 + 0x000000003c025558 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c02556a 0x2 + .rodata.__func__.5077 + 0x000000003c02556c 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__.5101 + 0x000000003c02557c 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c02558f 0x1 + .rodata.__func__.5163 + 0x000000003c025590 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0255a6 0x2 + .rodata.prvGetFreeSize.str1.4 + 0x000000003c0255a8 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0255c7 0x1 + .rodata.prvReceiveGeneric.str1.4 + 0x000000003c0255c8 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0255fd 0x3 + .rodata.prvReturnItemByteBuf.str1.4 + 0x000000003c025600 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c02567f 0x1 + .rodata.xRingbufferSend.str1.4 + 0x000000003c025680 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendAcquire.str1.4 + 0x000000003c0256a8 0x95 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c02573d 0x3 + .rodata.xRingbufferSendComplete.str1.4 + 0x000000003c025740 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c025756 0x2 + .rodata.__func__.5073 + 0x000000003c025758 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003c025776 0x2 + .rodata.esp_ota_get_running_partition.str1.4 + 0x000000003c025778 0x5b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003c0257d3 0x1 + .rodata.str1.4 + 0x000000003c0257d4 0x3f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + 0x43 (size before relaxing) + *fill* 0x000000003c025813 0x1 + .rodata 0x000000003c025814 0x60 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + 0x000000003c025814 __sf_fake_stderr + 0x000000003c025834 __sf_fake_stdout + 0x000000003c025854 __sf_fake_stdin + .rodata.str1.4 + 0x000000003c025874 0x3f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + 0x2 (size before relaxing) + .rodata 0x000000003c025874 0x2bc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .rodata.str1.4 + 0x000000003c025b30 0x25 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + *fill* 0x000000003c025b55 0x3 + .rodata 0x000000003c025b58 0x2bc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .rodata.str1.4 + 0x000000003c025e14 0x10 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + 0x3a (size before relaxing) + .rodata.str1.4 + 0x000000003c025e24 0xa9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + 0xad (size before relaxing) + *fill* 0x000000003c025ecd 0x3 + .rodata 0x000000003c025ed0 0x128 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + 0x000000003c025ee0 __mprec_tens + 0x000000003c025fa8 __mprec_tinytens + 0x000000003c025fd0 __mprec_bigtens + .rodata.str1.4 + 0x000000003c025ff8 0x6e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + 0x99 (size before relaxing) + *fill* 0x000000003c026066 0x2 + .rodata 0x000000003c026068 0x494 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + 0x000000003c026304 __chclass + 0x000000003c026404 __state_table + 0x000000003c026470 __action_table + .rodata.str1.4 + 0x000000003c0264fc 0x25 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .rodata 0x000000003c0264fc 0x101 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + 0x000000003c0264fc _ctype_ + *fill* 0x000000003c0265fd 0x3 + .rodata 0x000000003c026600 0x16c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + 0x000000003c026600 __default_global_locale + .rodata.str1.4 + 0x000000003c02676c 0xe /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + 0x12 (size before relaxing) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003c02677a __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x000000003c026780 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003c02677a 0x6 + 0x000000003c026780 __init_priority_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array.*) + 0x000000003c026780 __init_priority_array_end = ABSOLUTE (.) + 0x000000003c026780 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array) + .init_array 0x000000003c026780 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000003c026784 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + 0x000000003c026784 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003c026784 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003c026784 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x000000003c026784 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c02679c soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003c02679c _rodata_end = ABSOLUTE (.) + 0x000000003c02679c _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003c02679c _lit4_end = ABSOLUTE (.) + 0x000000003c02679c . = ALIGN (0x4) + 0x000000003c02679c _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + *(.srodata) + .srodata 0x000000003c02679c 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .srodata 0x000000003c0267a0 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *(.srodata.*) + *fill* 0x000000003c0267a5 0x3 + .srodata.cst8 0x000000003c0267a8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .srodata.cst8 0x000000003c0267c8 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + 0x48 (size before relaxing) + .srodata.cst8 0x000000003c026808 0x10 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .srodata.cst8 0x000000003c026808 0x8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + 0x000000003c026810 _thread_local_end = ABSOLUTE (.) + 0x000000003c026810 _rodata_reserved_end = ABSOLUTE (.) + 0x000000003c026818 . = ALIGN (ALIGNOF (.eh_frame)) + +.eh_frame 0x000000003c026810 0x0 + 0x000000003c026810 __eh_frame = ABSOLUTE (.) + *(.eh_frame) + .eh_frame 0x000000003c026810 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + 0x28 (size before relaxing) + .eh_frame 0x000000003c026810 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + 0x28 (size before relaxing) + .eh_frame 0x000000003c026810 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + 0x28 (size before relaxing) + .eh_frame 0x000000003c026810 0x0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + 0x28 (size before relaxing) + 0x000000003c026810 __eh_frame_end = ABSOLUTE (.) + 0x000000003c026810 . = ALIGN (ALIGNOF (.eh_frame_hdr)) + +.rela.dyn 0x000000003c026810 0x0 + .rela.text.intr_matrix_clear + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.37 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.select_rtc_slow_clk + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_clk_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_perip_clk_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_cache_err_int_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.40 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.do_global_ctors + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.do_system_init_fn + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.start_cpu0_default + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.sdata2.g_startup_fn + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.3 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_apb_backup_dma_lock_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_panic_handler_reconfigure_wdts + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_panic_handler + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.sdata.rtc_wdt_ctx + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.sdata.s_panic_uart + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.sdata.wdt0_context + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.0 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.wdt_hal_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.brownout_hal_config + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.uart_fsync + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.data.s_context + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_log_early_timestamp + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.32 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.26 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.heap_caps_get_minimum_free_size + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.heap_caps_get_info + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.heap_caps_enable_nonos_stack_heaps + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.heap_caps_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.assert_valid_block + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.s_get_num_reserved_regions + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.s_prepare_reserved_regions + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.reserved_memory_address + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.2 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.30 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.31 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_intr_enable_source + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.28 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_intr_disable_source + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.29 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_intr_alloc_intrstatus + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.27 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_8m_enable + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_slow_freq_set + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_fast_freq_set + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_xtal_freq_get + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_cpu_freq_get_config + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_cpu_freq_to_pll_mhz + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_cpu_freq_to_8m + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_cpu_freq_to_xtal + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.get_dig_dbias_by_efuse + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.calibrate_ocode + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.get_rtc_dbias_by_efuse + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.rtc_clk_cal_internal + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.1 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.6 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.7 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.8 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.9 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.10 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_get_default_main_split_addr + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_set_split_line + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_set_pms_lock + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_get_pms_lock + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_iram_set_pms_area + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_dram_set_pms_area + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_set_monitor_lock + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_get_monitor_lock + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_set_monitor_en + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_memprot_set_intr_matrix + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_timer_impl_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.pxPortInitialiseStack + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.xPortStartScheduler + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.vTaskSwitchContext + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.vTaskStartScheduler + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_newlib_locks_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_newlib_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_efuse_utility_process + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.data.uart_context + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.bootloader_flash_update_id + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.33 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.36 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_cache2phys + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_flash_init_default_chip + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.iram1.38 + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.load_partitions + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_chip_generic_suspend_cmd_conf + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_chip_generic_read_unique_id + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.memspi_host_read_id_hs + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.memspi_host_flush_cache + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_error_check_failed_print + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.esp_int_wdt_cpu_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.task_wdt_isr + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_supports_direct_write + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_supports_direct_read + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_setup_read_suspend + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_setup_auto_suspend_mode + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_setup_auto_resume_mode + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_disable_auto_suspend_mode + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.spi_flash_hal_disable_auto_resume_mode + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .rela.text.systimer_hal_init + 0x000000003c026810 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + +.eh_frame_hdr 0x000000003c026810 0x0 + 0x000000003c026810 __eh_frame_hdr = ABSOLUTE (.) + *(.eh_frame_hdr) + 0x000000003c026810 __eh_frame_hdr_end = ABSOLUTE (.) + +.flash.rodata_noload + 0x000000003c026810 0x0 + 0x000000003c026810 . = ALIGN (0x4) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + +.iram0.text_end + 0x0000000040389b4a 0xb6 + 0x0000000040389b5a . = (. + 0x10) + *fill* 0x0000000040389b4a 0x10 + 0x0000000040389c00 . = ALIGN (0x200) + *fill* 0x0000000040389b5a 0xa6 + *(.iram_end_test) + 0x0000000040389c00 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x0000000040389c00 0x0 + 0x0000000040389c00 . = ALIGN (0x10) + 0x0000000040389c00 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x0000000040389c00 _coredump_iram_start = ABSOLUTE (.) + *(.iram.data.coredump .iram.data.coredump.*) + 0x0000000040389c00 _coredump_iram_end = ABSOLUTE (.) + 0x0000000040389c00 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x0000000040389c00 0x0 + 0x0000000040389c00 . = ALIGN (0x10) + 0x0000000040389c00 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x0000000040389c00 _iram_bss_end = ABSOLUTE (.) + 0x0000000040389c00 . = ALIGN (0x10) + 0x0000000040389c00 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x000000003fc8be10 0x0 + 0x000000003fc8be10 . = ALIGN (0x10) + 0x000000003fc8be10 _heap_start = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x0000000000000001 ASSERT (((_heap_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x0000000040000018 rtc_get_reset_reason = 0x40000018 + 0x000000004000001c analog_super_wdt_reset_happened = 0x4000001c + 0x0000000040000020 jtag_cpu_reset_happened = 0x40000020 + 0x0000000040000024 rtc_get_wakeup_cause = 0x40000024 + 0x0000000040000028 rtc_boot_control = 0x40000028 + 0x000000004000002c rtc_select_apb_bridge = 0x4000002c + 0x0000000040000030 rtc_unhold_all_pads = 0x40000030 + 0x0000000040000034 set_rtc_memory_crc = 0x40000034 + 0x0000000040000038 cacl_rtc_memory_crc = 0x40000038 + 0x000000004000003c ets_is_print_boot = 0x4000003c + 0x0000000040000040 ets_printf = 0x40000040 + 0x0000000040000044 ets_install_putc1 = 0x40000044 + 0x0000000040000048 ets_install_uart_printf = 0x40000048 + 0x000000004000004c ets_install_putc2 = 0x4000004c + 0x0000000040000050 PROVIDE (ets_delay_us = 0x40000050) + 0x0000000040000054 ets_get_stack_info = 0x40000054 + 0x0000000040000058 ets_install_lock = 0x40000058 + 0x000000004000005c ets_backup_dma_copy = 0x4000005c + 0x0000000040000060 ets_apb_backup_init_lock_func = 0x40000060 + 0x0000000040000064 UartRxString = 0x40000064 + 0x0000000040000068 uart_tx_one_char = 0x40000068 + 0x000000004000006c uart_tx_one_char2 = 0x4000006c + 0x0000000040000070 uart_rx_one_char = 0x40000070 + 0x0000000040000074 uart_rx_one_char_block = 0x40000074 + 0x0000000040000078 uart_rx_readbuff = 0x40000078 + 0x000000004000007c uartAttach = 0x4000007c + 0x0000000040000080 uart_tx_flush = 0x40000080 + 0x0000000040000084 uart_tx_wait_idle = 0x40000084 + 0x0000000040000088 uart_div_modify = 0x40000088 + 0x000000004000008c multofup = 0x4000008c + 0x0000000040000090 software_reset = 0x40000090 + 0x0000000040000094 software_reset_cpu = 0x40000094 + 0x0000000040000098 assist_debug_clock_enable = 0x40000098 + 0x000000004000009c assist_debug_record_enable = 0x4000009c + 0x00000000400000a0 clear_super_wdt_reset_flag = 0x400000a0 + 0x00000000400000a4 disable_default_watchdog = 0x400000a4 + 0x00000000400000a8 send_packet = 0x400000a8 + 0x00000000400000ac recv_packet = 0x400000ac + 0x00000000400000b0 GetUartDevice = 0x400000b0 + 0x00000000400000b4 UartDwnLdProc = 0x400000b4 + 0x00000000400000b8 Uart_Init = 0x400000b8 + 0x00000000400000bc ets_set_user_start = 0x400000bc + 0x000000003ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x000000003fcdfffc ets_ops_table_ptr = 0x3fcdfffc + 0x00000000400000c0 mz_adler32 = 0x400000c0 + 0x00000000400000c4 mz_crc32 = 0x400000c4 + 0x00000000400000c8 mz_free = 0x400000c8 + 0x00000000400000cc tdefl_compress = 0x400000cc + 0x00000000400000d0 tdefl_compress_buffer = 0x400000d0 + 0x00000000400000d4 tdefl_compress_mem_to_heap = 0x400000d4 + 0x00000000400000d8 tdefl_compress_mem_to_mem = 0x400000d8 + 0x00000000400000dc tdefl_compress_mem_to_output = 0x400000dc + 0x00000000400000e0 tdefl_get_adler32 = 0x400000e0 + 0x00000000400000e4 tdefl_get_prev_return_status = 0x400000e4 + 0x00000000400000e8 tdefl_init = 0x400000e8 + 0x00000000400000ec tdefl_write_image_to_png_file_in_memory = 0x400000ec + 0x00000000400000f0 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f0 + 0x00000000400000f4 tinfl_decompress = 0x400000f4 + 0x00000000400000f8 tinfl_decompress_mem_to_callback = 0x400000f8 + 0x00000000400000fc tinfl_decompress_mem_to_heap = 0x400000fc + 0x0000000040000100 tinfl_decompress_mem_to_mem = 0x40000100 + 0x0000000040000104 jd_prepare = 0x40000104 + 0x0000000040000108 jd_decomp = 0x40000108 + 0x000000004000010c PROVIDE (esp_rom_spiflash_wait_idle = 0x4000010c) + 0x0000000040000110 PROVIDE (esp_rom_spiflash_write_encrypted = 0x40000110) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000114) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000118) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x4000011c) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x40000120) + [!provide] PROVIDE (esp_rom_spiflash_erase_block = 0x40000124) + [!provide] PROVIDE (esp_rom_spiflash_erase_sector = 0x40000128) + [!provide] PROVIDE (esp_rom_spiflash_write = 0x4000012c) + [!provide] PROVIDE (esp_rom_spiflash_read = 0x40000130) + [!provide] PROVIDE (esp_rom_spiflash_config_param = 0x40000134) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000138) + 0x000000004000013c PROVIDE (esp_rom_spiflash_select_qio_pins = 0x4000013c) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000140) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000144) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000148) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x4000014c) + 0x0000000040000150 PROVIDE (esp_rom_spiflash_config_clk = 0x40000150) + 0x0000000040000154 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000154) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000158) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x4000015c) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000160) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40000164) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000168) + [!provide] PROVIDE (spi_flash_guard_set = 0x4000016c) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000170) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000174) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000178) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x4000017c) + [!provide] PROVIDE (spi_flash_unlock = 0x40000180) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000184) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000188) + [!provide] PROVIDE (spi_flash_write = 0x4000018c) + [!provide] PROVIDE (spi_flash_read = 0x40000190) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000194) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000198) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x4000019c) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x400001a0) + [!provide] PROVIDE (spi_flash_mmap = 0x400001a4) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x400001a8) + [!provide] PROVIDE (spi_flash_munmap = 0x400001ac) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x400001b0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x400001b4) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x400001b8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x400001bc) + [!provide] PROVIDE (spi_flash_phys2cache = 0x400001c0) + [!provide] PROVIDE (spi_flash_disable_cache = 0x400001c4) + [!provide] PROVIDE (spi_flash_restore_cache = 0x400001c8) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x400001cc) + [!provide] PROVIDE (spi_flash_enable_cache = 0x400001d0) + [!provide] PROVIDE (spi_cache_mode_switch = 0x400001d4) + 0x00000000400001d8 PROVIDE (spi_common_set_dummy_output = 0x400001d8) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x400001dc) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x400001e0) + [!provide] PROVIDE (SPIEraseArea = 0x400001e4) + [!provide] PROVIDE (SPILock = 0x400001e8) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x400001ec) + [!provide] PROVIDE (SPI_Common_Command = 0x400001f0) + [!provide] PROVIDE (SPI_WakeUp = 0x400001f4) + [!provide] PROVIDE (SPI_block_erase = 0x400001f8) + [!provide] PROVIDE (SPI_chip_erase = 0x400001fc) + [!provide] PROVIDE (SPI_init = 0x40000200) + [!provide] PROVIDE (SPI_page_program = 0x40000204) + [!provide] PROVIDE (SPI_read_data = 0x40000208) + [!provide] PROVIDE (SPI_sector_erase = 0x4000020c) + [!provide] PROVIDE (SPI_write_enable = 0x40000210) + [!provide] PROVIDE (SelectSpiFunction = 0x40000214) + [!provide] PROVIDE (SetSpiDrvs = 0x40000218) + [!provide] PROVIDE (Wait_SPI_Idle = 0x4000021c) + 0x0000000040000220 PROVIDE (spi_dummy_len_fix = 0x40000220) + [!provide] PROVIDE (Disable_QMode = 0x40000224) + [!provide] PROVIDE (Enable_QMode = 0x40000228) + [!provide] PROVIDE (rom_spiflash_legacy_funcs = 0x3fcdfff4) + 0x000000003fcdfff0 PROVIDE (rom_spiflash_legacy_data = 0x3fcdfff0) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fcdfff8) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x4000022c) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000230) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000234) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000238) + [!provide] PROVIDE (spi_flash_hal_read = 0x4000023c) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000240) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000244) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000248) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x4000024c) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000250) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000254) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000258) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x4000025c) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000260) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000264) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000268) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x4000026c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000270) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000274) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000278) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x4000027c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000280) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000284) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000288) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x4000028c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000290) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000294) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000298) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x4000029c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x400002a0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x400002a4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x400002a8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x400002ac) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x400002b0) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x400002b4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x400002b8) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x400002bc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x400002c0) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x400002c4) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x400002c8) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fcdffec) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x400002cc) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x400002d0) + [!provide] PROVIDE (memspi_host_flush_cache = 0x400002d4) + [!provide] PROVIDE (memspi_host_erase_chip = 0x400002d8) + [!provide] PROVIDE (memspi_host_erase_sector = 0x400002dc) + [!provide] PROVIDE (memspi_host_erase_block = 0x400002e0) + [!provide] PROVIDE (memspi_host_program_page = 0x400002e4) + [!provide] PROVIDE (memspi_host_read = 0x400002e8) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x400002ec) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x400002f0) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400002f4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400002f8) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400002fc) + [!provide] PROVIDE (esp_flash_read_id = 0x40000300) + [!provide] PROVIDE (esp_flash_get_size = 0x40000304) + [!provide] PROVIDE (esp_flash_erase_chip = 0x40000308) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x4000030c) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x40000310) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40000314) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40000318) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000031c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40000320) + [!provide] PROVIDE (esp_flash_read = 0x40000324) + [!provide] PROVIDE (esp_flash_write = 0x40000328) + [!provide] PROVIDE (esp_flash_write_encrypted = 0x4000032c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40000330) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40000334) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40000338) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000033c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40000340) + [!provide] PROVIDE (spi_flash_get_counters = 0x40000344) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x40000348) + [!provide] PROVIDE (spi_flash_reset_counters = 0x4000034c) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fcdffe8) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fcdffe4) + [!provide] PROVIDE (Cache_Get_ICache_Line_Size = 0x400004b0) + [!provide] PROVIDE (Cache_Get_Mode = 0x400004b4) + [!provide] PROVIDE (Cache_Address_Through_IBus = 0x400004b8) + [!provide] PROVIDE (Cache_Address_Through_DBus = 0x400004bc) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x400004c0) + [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x400004c4) + [!provide] PROVIDE (ROM_Boot_Cache_Init = 0x400004c8) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x400004cc) + [!provide] PROVIDE (Cache_Op_Addr = 0x400004d0) + 0x00000000400004d4 PROVIDE (Cache_Invalidate_Addr = 0x400004d4) + 0x00000000400004d8 PROVIDE (Cache_Invalidate_ICache_All = 0x400004d8) + [!provide] PROVIDE (Cache_Mask_All = 0x400004dc) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x400004e0) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x400004e4) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x400004e8) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x400004ec) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x400004f0) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x400004f4) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x400004f8) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400004fc) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x40000500) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x40000504) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40000508) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000050c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40000510) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40000514) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40000518) + 0x000000004000051c PROVIDE (Cache_Disable_ICache = 0x4000051c) + [!provide] PROVIDE (Cache_Enable_ICache = 0x40000520) + 0x0000000040000524 PROVIDE (Cache_Suspend_ICache = 0x40000524) + 0x0000000040000528 PROVIDE (Cache_Resume_ICache = 0x40000528) + [!provide] PROVIDE (Cache_Freeze_ICache_Enable = 0x4000052c) + [!provide] PROVIDE (Cache_Freeze_ICache_Disable = 0x40000530) + [!provide] PROVIDE (Cache_Pms_Lock = 0x40000534) + [!provide] PROVIDE (Cache_Ibus_Pms_Set_Addr = 0x40000538) + [!provide] PROVIDE (Cache_Ibus_Pms_Set_Attr = 0x4000053c) + [!provide] PROVIDE (Cache_Dbus_Pms_Set_Addr = 0x40000540) + [!provide] PROVIDE (Cache_Dbus_Pms_Set_Attr = 0x40000544) + 0x0000000040000548 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40000548) + 0x000000004000054c PROVIDE (Cache_Get_IROM_MMU_End = 0x4000054c) + 0x0000000040000550 PROVIDE (Cache_Get_DROM_MMU_End = 0x40000550) + [!provide] PROVIDE (Cache_Owner_Init = 0x40000554) + [!provide] PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40000558) + [!provide] PROVIDE (Cache_MMU_Init = 0x4000055c) + 0x0000000040000560 PROVIDE (Cache_Ibus_MMU_Set = 0x40000560) + 0x0000000040000564 PROVIDE (Cache_Dbus_MMU_Set = 0x40000564) + [!provide] PROVIDE (Cache_Count_Flash_Pages = 0x40000568) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x4000056c) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x40000570) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x40000574) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40000578) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x4000057c) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fcdffd8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fcdffd4) + 0x0000000040000580 ets_get_apb_freq = 0x40000580 + 0x0000000040000584 ets_get_cpu_frequency = 0x40000584 + 0x0000000040000588 ets_update_cpu_frequency = 0x40000588 + 0x000000004000058c ets_get_printf_channel = 0x4000058c + 0x0000000040000590 ets_get_xtal_div = 0x40000590 + 0x0000000040000594 ets_set_xtal_div = 0x40000594 + 0x0000000040000598 ets_get_xtal_freq = 0x40000598 + 0x000000004000059c gpio_input_get = 0x4000059c + 0x00000000400005a0 gpio_matrix_in = 0x400005a0 + 0x00000000400005a4 gpio_matrix_out = 0x400005a4 + 0x00000000400005a8 gpio_output_disable = 0x400005a8 + 0x00000000400005ac gpio_output_enable = 0x400005ac + 0x00000000400005b0 gpio_output_set = 0x400005b0 + 0x00000000400005b4 gpio_pad_hold = 0x400005b4 + 0x00000000400005b8 gpio_pad_input_disable = 0x400005b8 + 0x00000000400005bc gpio_pad_input_enable = 0x400005bc + 0x00000000400005c0 gpio_pad_pulldown = 0x400005c0 + 0x00000000400005c4 gpio_pad_pullup = 0x400005c4 + 0x00000000400005c8 gpio_pad_select_gpio = 0x400005c8 + 0x00000000400005cc gpio_pad_set_drv = 0x400005cc + 0x00000000400005d0 gpio_pad_unhold = 0x400005d0 + 0x00000000400005d4 gpio_pin_wakeup_disable = 0x400005d4 + 0x00000000400005d8 gpio_pin_wakeup_enable = 0x400005d8 + 0x00000000400005dc gpio_bypass_matrix_in = 0x400005dc + 0x00000000400005e0 esprv_intc_int_set_priority = 0x400005e0 + 0x00000000400005e4 esprv_intc_int_set_threshold = 0x400005e4 + 0x00000000400005e8 esprv_intc_int_enable = 0x400005e8 + 0x00000000400005ec esprv_intc_int_disable = 0x400005ec + 0x00000000400005f0 esprv_intc_int_set_type = 0x400005f0 + 0x00000000400005f4 intr_matrix_set = 0x400005f4 + 0x00000000400005f8 ets_intr_lock = 0x400005f8 + 0x00000000400005fc ets_intr_unlock = 0x400005fc + [!provide] PROVIDE (intr_handler_set = 0x40000600) + 0x0000000040000604 ets_isr_attach = 0x40000604 + 0x0000000040000608 ets_isr_mask = 0x40000608 + 0x000000004000060c ets_isr_unmask = 0x4000060c + 0x0000000040000610 md5_vector = 0x40000610 + 0x0000000040000614 MD5Init = 0x40000614 + 0x0000000040000618 MD5Update = 0x40000618 + 0x000000004000061c MD5Final = 0x4000061c + 0x0000000040000620 hmac_md5_vector = 0x40000620 + 0x0000000040000624 hmac_md5 = 0x40000624 + 0x0000000040000628 crc32_le = 0x40000628 + 0x000000004000062c crc32_be = 0x4000062c + 0x0000000040000630 crc16_le = 0x40000630 + 0x0000000040000634 crc16_be = 0x40000634 + 0x0000000040000638 crc8_le = 0x40000638 + 0x000000004000063c crc8_be = 0x4000063c + 0x0000000040000640 esp_crc8 = 0x40000640 + 0x0000000040000644 ets_sha_enable = 0x40000644 + 0x0000000040000648 ets_sha_disable = 0x40000648 + 0x000000004000064c ets_sha_get_state = 0x4000064c + 0x0000000040000650 ets_sha_init = 0x40000650 + 0x0000000040000654 ets_sha_process = 0x40000654 + 0x0000000040000658 ets_sha_starts = 0x40000658 + 0x000000004000065c ets_sha_update = 0x4000065c + 0x0000000040000660 ets_sha_finish = 0x40000660 + 0x0000000040000664 ets_sha_clone = 0x40000664 + 0x0000000040000668 ets_hmac_enable = 0x40000668 + 0x000000004000066c ets_hmac_disable = 0x4000066c + 0x0000000040000670 ets_hmac_calculate_message = 0x40000670 + 0x0000000040000674 ets_hmac_calculate_downstream = 0x40000674 + 0x0000000040000678 ets_hmac_invalidate_downstream = 0x40000678 + 0x000000004000067c ets_jtag_enable_temporarily = 0x4000067c + 0x0000000040000680 ets_aes_enable = 0x40000680 + 0x0000000040000684 ets_aes_disable = 0x40000684 + 0x0000000040000688 ets_aes_setkey = 0x40000688 + 0x000000004000068c ets_aes_block = 0x4000068c + 0x0000000040000690 ets_bigint_enable = 0x40000690 + 0x0000000040000694 ets_bigint_disable = 0x40000694 + 0x0000000040000698 ets_bigint_multiply = 0x40000698 + 0x000000004000069c ets_bigint_modmult = 0x4000069c + 0x00000000400006a0 ets_bigint_modexp = 0x400006a0 + 0x00000000400006a4 ets_bigint_wait_finish = 0x400006a4 + 0x00000000400006a8 ets_bigint_getz = 0x400006a8 + 0x00000000400006ac ets_ds_enable = 0x400006ac + 0x00000000400006b0 ets_ds_disable = 0x400006b0 + 0x00000000400006b4 ets_ds_start_sign = 0x400006b4 + 0x00000000400006b8 ets_ds_is_busy = 0x400006b8 + 0x00000000400006bc ets_ds_finish_sign = 0x400006bc + 0x00000000400006c0 ets_ds_encrypt_params = 0x400006c0 + 0x00000000400006c4 ets_aes_setkey_dec = 0x400006c4 + 0x00000000400006c8 ets_aes_setkey_enc = 0x400006c8 + 0x00000000400006cc ets_mgf1_sha256 = 0x400006cc + 0x00000000400006d0 ets_efuse_read = 0x400006d0 + 0x00000000400006d4 ets_efuse_program = 0x400006d4 + 0x00000000400006d8 ets_efuse_clear_program_registers = 0x400006d8 + 0x00000000400006dc ets_efuse_write_key = 0x400006dc + 0x00000000400006e0 ets_efuse_get_read_register_address = 0x400006e0 + 0x00000000400006e4 ets_efuse_get_key_purpose = 0x400006e4 + 0x00000000400006e8 ets_efuse_key_block_unused = 0x400006e8 + 0x00000000400006ec ets_efuse_find_unused_key_block = 0x400006ec + 0x00000000400006f0 ets_efuse_rs_calculate = 0x400006f0 + 0x00000000400006f4 ets_efuse_count_unused_key_blocks = 0x400006f4 + 0x00000000400006f8 ets_efuse_secure_boot_enabled = 0x400006f8 + 0x00000000400006fc ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400006fc + 0x0000000040000700 ets_efuse_cache_encryption_enabled = 0x40000700 + 0x0000000040000704 ets_efuse_download_modes_disabled = 0x40000704 + 0x0000000040000708 ets_efuse_find_purpose = 0x40000708 + 0x000000004000070c ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x4000070c + 0x0000000040000710 ets_efuse_force_send_resume = 0x40000710 + 0x0000000040000714 ets_efuse_get_flash_delay_us = 0x40000714 + 0x0000000040000718 ets_efuse_get_mac = 0x40000718 + 0x000000004000071c ets_efuse_get_spiconfig = 0x4000071c + 0x0000000040000720 ets_efuse_usb_print_is_disabled = 0x40000720 + 0x0000000040000724 ets_efuse_get_uart_print_channel = 0x40000724 + 0x0000000040000728 ets_efuse_get_uart_print_control = 0x40000728 + 0x000000004000072c ets_efuse_get_wp_pad = 0x4000072c + 0x0000000040000730 ets_efuse_legacy_spi_boot_mode_disabled = 0x40000730 + 0x0000000040000734 ets_efuse_security_download_modes_enabled = 0x40000734 + 0x0000000040000738 ets_efuse_set_timing = 0x40000738 + 0x000000004000073c ets_efuse_jtag_disabled = 0x4000073c + 0x0000000040000740 ets_efuse_usb_download_mode_disabled = 0x40000740 + 0x0000000040000744 ets_efuse_usb_module_disabled = 0x40000744 + 0x0000000040000748 ets_efuse_usb_device_disabled = 0x40000748 + 0x000000004000074c ets_emsa_pss_verify = 0x4000074c + 0x0000000040000750 ets_rsa_pss_verify = 0x40000750 + 0x0000000040000754 ets_secure_boot_verify_bootloader_with_keys = 0x40000754 + 0x0000000040000758 ets_secure_boot_verify_signature = 0x40000758 + 0x000000004000075c ets_secure_boot_read_key_digests = 0x4000075c + 0x0000000040000760 ets_secure_boot_revoke_public_key_digest = 0x40000760 + [!provide] PROVIDE (usb_uart_rx_one_char = 0x400008cc) + [!provide] PROVIDE (usb_uart_rx_one_char_block = 0x400008d0) + [!provide] PROVIDE (usb_uart_tx_flush = 0x400008d4) + [!provide] PROVIDE (usb_uart_tx_one_char = 0x400008d8) + [!provide] PROVIDE (g_uart_print = 0x3fcdffd1) + [!provide] PROVIDE (g_usb_print = 0x3fcdffd0) + 0x00000000400008dc bt_rf_coex_get_dft_cfg = 0x400008dc + 0x00000000400008e0 bt_rf_coex_hooks_p_set = 0x400008e0 + 0x00000000400008e4 btdm_con_maxevtime_cal_impl = 0x400008e4 + 0x00000000400008e8 btdm_controller_get_compile_version_impl = 0x400008e8 + 0x00000000400008ec btdm_controller_rom_data_init = 0x400008ec + 0x00000000400008f0 btdm_dis_privacy_err_report_impl = 0x400008f0 + 0x00000000400008f4 btdm_disable_adv_delay_impl = 0x400008f4 + 0x00000000400008f8 btdm_enable_scan_continue_impl = 0x400008f8 + 0x00000000400008fc btdm_enable_scan_forever_impl = 0x400008fc + 0x0000000040000900 btdm_get_power_state_impl = 0x40000900 + 0x0000000040000904 btdm_get_prevent_sleep_flag_impl = 0x40000904 + 0x0000000040000908 btdm_power_state_active_impl = 0x40000908 + 0x000000004000090c btdm_switch_phy_coded_impl = 0x4000090c + 0x0000000040000910 hci_acl_data_handler = 0x40000910 + 0x0000000040000914 hci_disconnect_cmd_handler = 0x40000914 + 0x0000000040000918 hci_le_con_upd_cmd_handler = 0x40000918 + 0x000000004000091c hci_le_ltk_req_neg_reply_cmd_handler = 0x4000091c + 0x0000000040000920 hci_le_ltk_req_reply_cmd_handler = 0x40000920 + 0x0000000040000924 hci_le_rd_chnl_map_cmd_handler = 0x40000924 + 0x0000000040000928 hci_le_rd_phy_cmd_handler = 0x40000928 + 0x000000004000092c hci_le_rd_rem_feats_cmd_handler = 0x4000092c + 0x0000000040000930 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40000930 + 0x0000000040000934 hci_le_rem_con_param_req_reply_cmd_handler = 0x40000934 + 0x0000000040000938 hci_le_set_data_len_cmd_handler = 0x40000938 + 0x000000004000093c hci_le_set_phy_cmd_handler = 0x4000093c + 0x0000000040000940 hci_le_start_enc_cmd_handler = 0x40000940 + 0x0000000040000944 hci_rd_auth_payl_to_cmd_handler = 0x40000944 + 0x0000000040000948 hci_rd_rem_ver_info_cmd_handler = 0x40000948 + 0x000000004000094c hci_rd_rssi_cmd_handler = 0x4000094c + 0x0000000040000950 hci_rd_tx_pwr_lvl_cmd_handler = 0x40000950 + 0x0000000040000954 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40000954 + 0x0000000040000958 hci_vs_set_pref_slave_latency_cmd_handler = 0x40000958 + 0x000000004000095c hci_wr_auth_payl_to_cmd_handler = 0x4000095c + 0x0000000040000960 ll_channel_map_ind_handler = 0x40000960 + 0x0000000040000964 ll_connection_param_req_handler = 0x40000964 + 0x0000000040000968 ll_connection_param_rsp_handler = 0x40000968 + 0x000000004000096c ll_connection_update_ind_handler = 0x4000096c + 0x0000000040000970 ll_enc_req_handler = 0x40000970 + 0x0000000040000974 ll_enc_rsp_handler = 0x40000974 + 0x0000000040000978 ll_feature_req_handler = 0x40000978 + 0x000000004000097c ll_feature_rsp_handler = 0x4000097c + 0x0000000040000980 ll_length_req_handler = 0x40000980 + 0x0000000040000984 ll_length_rsp_handler = 0x40000984 + 0x0000000040000988 ll_min_used_channels_ind_handler = 0x40000988 + 0x000000004000098c ll_pause_enc_req_handler = 0x4000098c + 0x0000000040000990 ll_pause_enc_rsp_handler = 0x40000990 + 0x0000000040000994 ll_phy_req_handler = 0x40000994 + 0x0000000040000998 ll_phy_rsp_handler = 0x40000998 + 0x000000004000099c ll_phy_update_ind_handler = 0x4000099c + 0x00000000400009a0 ll_ping_req_handler = 0x400009a0 + 0x00000000400009a4 ll_ping_rsp_handler = 0x400009a4 + 0x00000000400009a8 ll_slave_feature_req_handler = 0x400009a8 + 0x00000000400009ac ll_start_enc_req_handler = 0x400009ac + 0x00000000400009b0 ll_start_enc_rsp_handler = 0x400009b0 + 0x00000000400009b4 ll_terminate_ind_handler = 0x400009b4 + 0x00000000400009b8 ll_version_ind_handler = 0x400009b8 + 0x00000000400009bc llc_auth_payl_nearly_to_handler = 0x400009bc + 0x00000000400009c0 llc_auth_payl_real_to_handler = 0x400009c0 + 0x00000000400009c4 llc_encrypt_ind_handler = 0x400009c4 + 0x00000000400009c8 llc_hci_command_handler_wrapper = 0x400009c8 + 0x00000000400009cc llc_ll_connection_param_req_pdu_send = 0x400009cc + 0x00000000400009d0 llc_ll_connection_param_rsp_pdu_send = 0x400009d0 + 0x00000000400009d4 llc_ll_connection_update_ind_pdu_send = 0x400009d4 + 0x00000000400009d8 llc_ll_enc_req_pdu_send = 0x400009d8 + 0x00000000400009dc llc_ll_enc_rsp_pdu_send = 0x400009dc + 0x00000000400009e0 llc_ll_feature_req_pdu_send = 0x400009e0 + 0x00000000400009e4 llc_ll_feature_rsp_pdu_send = 0x400009e4 + 0x00000000400009e8 llc_ll_length_req_pdu_send = 0x400009e8 + 0x00000000400009ec llc_ll_length_rsp_pdu_send = 0x400009ec + 0x00000000400009f0 llc_ll_pause_enc_req_pdu_send = 0x400009f0 + 0x00000000400009f4 llc_ll_pause_enc_rsp_pdu_send = 0x400009f4 + 0x00000000400009f8 llc_ll_phy_req_pdu_send = 0x400009f8 + 0x00000000400009fc llc_ll_phy_rsp_pdu_send = 0x400009fc + 0x0000000040000a00 llc_ll_ping_req_pdu_send = 0x40000a00 + 0x0000000040000a04 llc_ll_ping_rsp_pdu_send = 0x40000a04 + 0x0000000040000a08 llc_ll_start_enc_req_pdu_send = 0x40000a08 + 0x0000000040000a0c llc_ll_start_enc_rsp_pdu_send = 0x40000a0c + 0x0000000040000a10 llc_ll_terminate_ind_pdu_send = 0x40000a10 + 0x0000000040000a14 llc_ll_unknown_rsp_pdu_send = 0x40000a14 + 0x0000000040000a18 llc_llcp_ch_map_update_ind_pdu_send = 0x40000a18 + 0x0000000040000a1c llc_llcp_phy_upd_ind_pdu_send = 0x40000a1c + 0x0000000040000a20 llc_llcp_version_ind_pdu_send = 0x40000a20 + 0x0000000040000a24 llc_op_ch_map_upd_ind_handler = 0x40000a24 + 0x0000000040000a28 llc_op_con_upd_ind_handler = 0x40000a28 + 0x0000000040000a2c llc_op_disconnect_ind_handler = 0x40000a2c + 0x0000000040000a30 llc_op_dl_upd_ind_handler = 0x40000a30 + 0x0000000040000a34 llc_op_encrypt_ind_handler = 0x40000a34 + 0x0000000040000a38 llc_op_feats_exch_ind_handler = 0x40000a38 + 0x0000000040000a3c llc_op_le_ping_ind_handler = 0x40000a3c + 0x0000000040000a40 llc_op_phy_upd_ind_handler = 0x40000a40 + 0x0000000040000a44 llc_op_ver_exch_ind_handler = 0x40000a44 + 0x0000000040000a48 llc_stopped_ind_handler = 0x40000a48 + 0x0000000040000a4c lld_acl_rx_ind_handler = 0x40000a4c + 0x0000000040000a50 lld_acl_tx_cfm_handler = 0x40000a50 + 0x0000000040000a54 lld_adv_end_ind_handler = 0x40000a54 + 0x0000000040000a58 lld_adv_rep_ind_handler = 0x40000a58 + 0x0000000040000a5c lld_ch_map_upd_cfm_handler = 0x40000a5c + 0x0000000040000a60 lld_con_estab_ind_handler = 0x40000a60 + 0x0000000040000a64 lld_con_evt_sd_evt_time_set = 0x40000a64 + 0x0000000040000a68 lld_con_offset_upd_ind_handler = 0x40000a68 + 0x0000000040000a6c lld_con_param_upd_cfm_handler = 0x40000a6c + 0x0000000040000a70 lld_disc_ind_handler = 0x40000a70 + 0x0000000040000a74 lld_init_end_ind_handler = 0x40000a74 + 0x0000000040000a78 lld_llcp_rx_ind_handler_wrapper = 0x40000a78 + 0x0000000040000a7c lld_llcp_tx_cfm_handler = 0x40000a7c + 0x0000000040000a80 lld_per_adv_end_ind_handler = 0x40000a80 + 0x0000000040000a84 lld_per_adv_rep_ind_handler = 0x40000a84 + 0x0000000040000a88 lld_per_adv_rx_end_ind_handler = 0x40000a88 + 0x0000000040000a8c lld_phy_coded_500k_get = 0x40000a8c + 0x0000000040000a90 lld_phy_upd_cfm_handler = 0x40000a90 + 0x0000000040000a94 lld_scan_end_ind_handler = 0x40000a94 + 0x0000000040000a98 lld_scan_req_ind_handler = 0x40000a98 + 0x0000000040000a9c lld_sync_start_req_handler = 0x40000a9c + 0x0000000040000aa0 lld_test_end_ind_handler = 0x40000aa0 + 0x0000000040000aa4 lld_update_rxbuf_handler = 0x40000aa4 + 0x0000000040000aa8 llm_ch_map_update_ind_handler = 0x40000aa8 + 0x0000000040000aac llm_hci_command_handler_wrapper = 0x40000aac + 0x0000000040000ab0 llm_scan_period_to_handler = 0x40000ab0 + 0x0000000040000ab4 r_Add2SelfBigHex256 = 0x40000ab4 + 0x0000000040000ab8 r_AddBigHex256 = 0x40000ab8 + 0x0000000040000abc r_AddBigHexModP256 = 0x40000abc + 0x0000000040000ac0 r_AddP256 = 0x40000ac0 + 0x0000000040000ac4 r_AddPdiv2_256 = 0x40000ac4 + 0x0000000040000ac8 r_GF_Jacobian_Point_Addition256 = 0x40000ac8 + 0x0000000040000acc r_GF_Jacobian_Point_Double256 = 0x40000acc + 0x0000000040000ad0 r_GF_Point_Jacobian_To_Affine256 = 0x40000ad0 + 0x0000000040000ad4 r_MultiplyBigHexByUint32_256 = 0x40000ad4 + 0x0000000040000ad8 r_MultiplyBigHexModP256 = 0x40000ad8 + 0x0000000040000adc r_MultiplyByU16ModP256 = 0x40000adc + 0x0000000040000ae0 r_SubtractBigHex256 = 0x40000ae0 + 0x0000000040000ae4 r_SubtractBigHexMod256 = 0x40000ae4 + 0x0000000040000ae8 r_SubtractBigHexUint32_256 = 0x40000ae8 + 0x0000000040000aec r_SubtractFromSelfBigHex256 = 0x40000aec + 0x0000000040000af0 r_SubtractFromSelfBigHexSign256 = 0x40000af0 + 0x0000000040000af4 r_aes_alloc = 0x40000af4 + 0x0000000040000af8 r_aes_ccm_continue = 0x40000af8 + 0x0000000040000afc r_aes_ccm_process_e = 0x40000afc + 0x0000000040000b00 r_aes_ccm_xor_128_lsb = 0x40000b00 + 0x0000000040000b04 r_aes_ccm_xor_128_msb = 0x40000b04 + 0x0000000040000b08 r_aes_cmac_continue = 0x40000b08 + 0x0000000040000b0c r_aes_cmac_start = 0x40000b0c + 0x0000000040000b10 r_aes_k1_continue = 0x40000b10 + 0x0000000040000b14 r_aes_k2_continue = 0x40000b14 + 0x0000000040000b18 r_aes_k3_continue = 0x40000b18 + 0x0000000040000b1c r_aes_k4_continue = 0x40000b1c + 0x0000000040000b20 r_aes_shift_left_128 = 0x40000b20 + 0x0000000040000b24 r_aes_start = 0x40000b24 + 0x0000000040000b28 r_aes_xor_128 = 0x40000b28 + 0x0000000040000b2c r_assert_err = 0x40000b2c + 0x0000000040000b30 r_assert_param = 0x40000b30 + 0x0000000040000b34 r_assert_warn = 0x40000b34 + 0x0000000040000b38 r_bigHexInversion256 = 0x40000b38 + 0x0000000040000b3c r_ble_sw_cca_check_isr = 0x40000b3c + 0x0000000040000b40 r_ble_util_buf_acl_tx_alloc = 0x40000b40 + 0x0000000040000b44 r_ble_util_buf_acl_tx_elt_get = 0x40000b44 + 0x0000000040000b48 r_ble_util_buf_acl_tx_free = 0x40000b48 + 0x0000000040000b4c r_ble_util_buf_acl_tx_free_in_isr = 0x40000b4c + 0x0000000040000b50 r_ble_util_buf_adv_tx_alloc = 0x40000b50 + 0x0000000040000b54 r_ble_util_buf_adv_tx_free = 0x40000b54 + 0x0000000040000b58 r_ble_util_buf_adv_tx_free_in_isr = 0x40000b58 + 0x0000000040000b5c r_ble_util_buf_env_deinit = 0x40000b5c + 0x0000000040000b60 r_ble_util_buf_env_init = 0x40000b60 + 0x0000000040000b64 r_ble_util_buf_get_rx_buf_nb = 0x40000b64 + 0x0000000040000b68 r_ble_util_buf_get_rx_buf_size = 0x40000b68 + 0x0000000040000b6c r_ble_util_buf_llcp_tx_alloc = 0x40000b6c + 0x0000000040000b70 r_ble_util_buf_llcp_tx_free = 0x40000b70 + 0x0000000040000b74 r_ble_util_buf_rx_alloc = 0x40000b74 + 0x0000000040000b78 r_ble_util_buf_rx_alloc_in_isr = 0x40000b78 + 0x0000000040000b7c r_ble_util_buf_rx_free = 0x40000b7c + 0x0000000040000b80 r_ble_util_buf_rx_free_in_isr = 0x40000b80 + 0x0000000040000b84 r_ble_util_buf_set_rx_buf_nb = 0x40000b84 + 0x0000000040000b88 r_ble_util_buf_set_rx_buf_size = 0x40000b88 + 0x0000000040000b8c r_ble_util_data_rx_buf_reset = 0x40000b8c + 0x0000000040000b90 r_bt_bb_get_intr_mask = 0x40000b90 + 0x0000000040000b94 r_bt_bb_intr_clear = 0x40000b94 + 0x0000000040000b98 r_bt_bb_intr_mask_set = 0x40000b98 + 0x0000000040000b9c r_bt_bb_isr = 0x40000b9c + 0x0000000040000ba0 r_bt_rf_coex_cfg_set = 0x40000ba0 + 0x0000000040000ba4 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x40000ba4 + 0x0000000040000ba8 r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get = 0x40000ba8 + 0x0000000040000bac r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x40000bac + 0x0000000040000bb0 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x40000bb0 + 0x0000000040000bb4 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40000bb4 + 0x0000000040000bb8 r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x40000bb8 + 0x0000000040000bbc r_bt_rf_coex_pti_table_get = 0x40000bbc + 0x0000000040000bc0 r_bt_rf_coex_st_param_get = 0x40000bc0 + 0x0000000040000bc4 r_bt_rf_coex_st_param_set = 0x40000bc4 + 0x0000000040000bc8 r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x40000bc8 + 0x0000000040000bcc r_bt_rma_apply_rule_cs_fmt = 0x40000bcc + 0x0000000040000bd0 r_bt_rma_apply_rule_cs_idx = 0x40000bd0 + 0x0000000040000bd4 r_bt_rma_configure = 0x40000bd4 + 0x0000000040000bd8 r_bt_rma_deregister_rule_cs_fmt = 0x40000bd8 + 0x0000000040000bdc r_bt_rma_deregister_rule_cs_idx = 0x40000bdc + 0x0000000040000be0 r_bt_rma_get_ant_by_act = 0x40000be0 + 0x0000000040000be4 r_bt_rma_init = 0x40000be4 + 0x0000000040000be8 r_bt_rma_register_rule_cs_fmt = 0x40000be8 + 0x0000000040000bec r_bt_rma_register_rule_cs_idx = 0x40000bec + 0x0000000040000bf0 r_bt_rtp_apply_rule_cs_fmt = 0x40000bf0 + 0x0000000040000bf4 r_bt_rtp_apply_rule_cs_idx = 0x40000bf4 + 0x0000000040000bf8 r_bt_rtp_deregister_rule_cs_fmt = 0x40000bf8 + 0x0000000040000bfc r_bt_rtp_deregister_rule_cs_idx = 0x40000bfc + 0x0000000040000c00 r_bt_rtp_get_txpwr_idx_by_act = 0x40000c00 + 0x0000000040000c04 r_bt_rtp_init = 0x40000c04 + 0x0000000040000c08 r_bt_rtp_register_rule_cs_fmt = 0x40000c08 + 0x0000000040000c0c r_bt_rtp_register_rule_cs_idx = 0x40000c0c + 0x0000000040000c10 r_btdm_isr = 0x40000c10 + 0x0000000040000c14 r_btdm_task_post = 0x40000c14 + 0x0000000040000c18 r_btdm_task_post_from_isr = 0x40000c18 + 0x0000000040000c1c r_btdm_task_recycle = 0x40000c1c + 0x0000000040000c20 r_cali_phase_match_p = 0x40000c20 + 0x0000000040000c24 r_cmp_abs_time = 0x40000c24 + 0x0000000040000c28 r_cmp_dest_id = 0x40000c28 + 0x0000000040000c2c r_cmp_timer_id = 0x40000c2c + 0x0000000040000c30 r_co_bdaddr_compare = 0x40000c30 + 0x0000000040000c34 r_co_ble_pkt_dur_in_us = 0x40000c34 + 0x0000000040000c38 r_co_list_extract = 0x40000c38 + 0x0000000040000c3c r_co_list_extract_after = 0x40000c3c + 0x0000000040000c40 r_co_list_extract_sublist = 0x40000c40 + 0x0000000040000c44 r_co_list_find = 0x40000c44 + 0x0000000040000c48 r_co_list_init = 0x40000c48 + 0x0000000040000c4c r_co_list_insert_after = 0x40000c4c + 0x0000000040000c50 r_co_list_insert_before = 0x40000c50 + 0x0000000040000c54 r_co_list_merge = 0x40000c54 + 0x0000000040000c58 r_co_list_pool_init = 0x40000c58 + 0x0000000040000c5c r_co_list_pop_front = 0x40000c5c + 0x0000000040000c60 r_co_list_push_back = 0x40000c60 + 0x0000000040000c64 r_co_list_push_back_sublist = 0x40000c64 + 0x0000000040000c68 r_co_list_push_front = 0x40000c68 + 0x0000000040000c6c r_co_list_size = 0x40000c6c + 0x0000000040000c70 r_co_nb_good_le_channels = 0x40000c70 + 0x0000000040000c74 r_co_util_pack = 0x40000c74 + 0x0000000040000c78 r_co_util_read_array_size = 0x40000c78 + 0x0000000040000c7c r_co_util_unpack = 0x40000c7c + 0x0000000040000c80 r_dbg_env_deinit = 0x40000c80 + 0x0000000040000c84 r_dbg_env_init = 0x40000c84 + 0x0000000040000c88 r_dbg_platform_reset_complete = 0x40000c88 + 0x0000000040000c8c r_dl_upd_proc_start = 0x40000c8c + 0x0000000040000c90 r_dump_data = 0x40000c90 + 0x0000000040000c94 r_ecc_abort_key256_generation = 0x40000c94 + 0x0000000040000c98 r_ecc_gen_new_public_key = 0x40000c98 + 0x0000000040000c9c r_ecc_gen_new_secret_key = 0x40000c9c + 0x0000000040000ca0 r_ecc_generate_key256 = 0x40000ca0 + 0x0000000040000ca4 r_ecc_get_debug_Keys = 0x40000ca4 + 0x0000000040000ca8 r_ecc_init = 0x40000ca8 + 0x0000000040000cac r_ecc_is_valid_point = 0x40000cac + 0x0000000040000cb0 r_ecc_multiplication_event_handler = 0x40000cb0 + 0x0000000040000cb4 r_ecc_point_multiplication_win_256 = 0x40000cb4 + 0x0000000040000cb8 r_emi_alloc_em_mapping_by_offset = 0x40000cb8 + 0x0000000040000cbc r_emi_base_reg_lut_show = 0x40000cbc + 0x0000000040000cc0 r_emi_em_base_reg_show = 0x40000cc0 + 0x0000000040000cc4 r_emi_free_em_mapping_by_offset = 0x40000cc4 + 0x0000000040000cc8 r_emi_get_em_mapping_idx_by_offset = 0x40000cc8 + 0x0000000040000ccc r_emi_get_mem_addr_by_offset = 0x40000ccc + 0x0000000040000cd0 r_emi_overwrite_em_mapping_by_offset = 0x40000cd0 + 0x0000000040000cd4 r_esp_vendor_hci_command_handler = 0x40000cd4 + 0x0000000040000cd8 r_get_stack_usage = 0x40000cd8 + 0x0000000040000cdc r_h4tl_acl_hdr_rx_evt_handler = 0x40000cdc + 0x0000000040000ce0 r_h4tl_cmd_hdr_rx_evt_handler = 0x40000ce0 + 0x0000000040000ce4 r_h4tl_cmd_pld_rx_evt_handler = 0x40000ce4 + 0x0000000040000ce8 r_h4tl_eif_io_event_post = 0x40000ce8 + 0x0000000040000cec r_h4tl_eif_register = 0x40000cec + 0x0000000040000cf0 r_h4tl_init = 0x40000cf0 + 0x0000000040000cf4 r_h4tl_out_of_sync = 0x40000cf4 + 0x0000000040000cf8 r_h4tl_out_of_sync_check = 0x40000cf8 + 0x0000000040000cfc r_h4tl_read_hdr = 0x40000cfc + 0x0000000040000d00 r_h4tl_read_next_out_of_sync = 0x40000d00 + 0x0000000040000d04 r_h4tl_read_payl = 0x40000d04 + 0x0000000040000d08 r_h4tl_read_start = 0x40000d08 + 0x0000000040000d0c r_h4tl_rx_acl_hdr_extract = 0x40000d0c + 0x0000000040000d10 r_h4tl_rx_cmd_hdr_extract = 0x40000d10 + 0x0000000040000d14 r_h4tl_rx_done = 0x40000d14 + 0x0000000040000d18 r_h4tl_start = 0x40000d18 + 0x0000000040000d1c r_h4tl_stop = 0x40000d1c + 0x0000000040000d20 r_h4tl_tx_done = 0x40000d20 + 0x0000000040000d24 r_h4tl_tx_evt_handler = 0x40000d24 + 0x0000000040000d28 r_h4tl_write = 0x40000d28 + 0x0000000040000d2c r_hci_acl_tx_data_alloc = 0x40000d2c + 0x0000000040000d30 r_hci_acl_tx_data_received = 0x40000d30 + 0x0000000040000d34 r_hci_basic_cmd_send_2_controller = 0x40000d34 + 0x0000000040000d38 r_hci_ble_adv_report_filter_check = 0x40000d38 + 0x0000000040000d3c r_hci_ble_adv_report_tx_check = 0x40000d3c + 0x0000000040000d40 r_hci_ble_conhdl_register = 0x40000d40 + 0x0000000040000d44 r_hci_ble_conhdl_unregister = 0x40000d44 + 0x0000000040000d48 r_hci_build_acl_data = 0x40000d48 + 0x0000000040000d4c r_hci_build_cc_evt = 0x40000d4c + 0x0000000040000d50 r_hci_build_cs_evt = 0x40000d50 + 0x0000000040000d54 r_hci_build_evt = 0x40000d54 + 0x0000000040000d58 r_hci_build_le_evt = 0x40000d58 + 0x0000000040000d5c r_hci_cmd_get_max_param_size = 0x40000d5c + 0x0000000040000d60 r_hci_cmd_received = 0x40000d60 + 0x0000000040000d64 r_hci_cmd_reject = 0x40000d64 + 0x0000000040000d68 r_hci_evt_mask_check = 0x40000d68 + 0x0000000040000d6c r_hci_evt_mask_set = 0x40000d6c + 0x0000000040000d70 r_hci_fc_acl_buf_size_set = 0x40000d70 + 0x0000000040000d74 r_hci_fc_acl_en = 0x40000d74 + 0x0000000040000d78 r_hci_fc_acl_packet_sent = 0x40000d78 + 0x0000000040000d7c r_hci_fc_check_host_available_nb_acl_packets = 0x40000d7c + 0x0000000040000d80 r_hci_fc_host_nb_acl_pkts_complete = 0x40000d80 + 0x0000000040000d84 r_hci_fc_init = 0x40000d84 + 0x0000000040000d88 r_hci_look_for_cmd_desc = 0x40000d88 + 0x0000000040000d8c r_hci_look_for_evt_desc = 0x40000d8c + 0x0000000040000d90 r_hci_look_for_le_evt_desc = 0x40000d90 + 0x0000000040000d94 r_hci_look_for_le_evt_desc_esp = 0x40000d94 + 0x0000000040000d98 r_hci_pack_bytes = 0x40000d98 + 0x0000000040000d9c r_hci_register_vendor_desc_tab = 0x40000d9c + 0x0000000040000da0 r_hci_send_2_controller = 0x40000da0 + 0x0000000040000da4 r_hci_send_2_host = 0x40000da4 + 0x0000000040000da8 r_hci_tl_c2h_data_flow_on = 0x40000da8 + 0x0000000040000dac r_hci_tl_cmd_hdr_rx_evt_handler = 0x40000dac + 0x0000000040000db0 r_hci_tl_cmd_pld_rx_evt_handler = 0x40000db0 + 0x0000000040000db4 r_hci_tl_get_pkt = 0x40000db4 + 0x0000000040000db8 r_hci_tl_hci_pkt_handler = 0x40000db8 + 0x0000000040000dbc r_hci_tl_hci_tx_done_evt_handler = 0x40000dbc + 0x0000000040000dc0 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40000dc0 + 0x0000000040000dc4 r_hci_tl_save_pkt = 0x40000dc4 + 0x0000000040000dc8 r_hci_tl_send = 0x40000dc8 + 0x0000000040000dcc r_hci_tx_done = 0x40000dcc + 0x0000000040000dd0 r_hci_tx_start = 0x40000dd0 + 0x0000000040000dd4 r_hci_tx_trigger = 0x40000dd4 + 0x0000000040000dd8 r_isValidSecretKey_256 = 0x40000dd8 + 0x0000000040000ddc r_ke_check_malloc = 0x40000ddc + 0x0000000040000de0 r_ke_event_callback_set = 0x40000de0 + 0x0000000040000de4 r_ke_event_clear = 0x40000de4 + 0x0000000040000de8 r_ke_event_flush = 0x40000de8 + 0x0000000040000dec r_ke_event_get = 0x40000dec + 0x0000000040000df0 r_ke_event_get_all = 0x40000df0 + 0x0000000040000df4 r_ke_event_init = 0x40000df4 + 0x0000000040000df8 r_ke_event_schedule = 0x40000df8 + 0x0000000040000dfc r_ke_event_set = 0x40000dfc + 0x0000000040000e00 r_ke_flush = 0x40000e00 + 0x0000000040000e04 r_ke_free = 0x40000e04 + 0x0000000040000e08 r_ke_handler_search = 0x40000e08 + 0x0000000040000e0c r_ke_init = 0x40000e0c + 0x0000000040000e10 r_ke_is_free = 0x40000e10 + 0x0000000040000e14 r_ke_malloc = 0x40000e14 + 0x0000000040000e18 r_ke_mem_init = 0x40000e18 + 0x0000000040000e1c r_ke_mem_is_empty = 0x40000e1c + 0x0000000040000e20 r_ke_mem_is_in_heap = 0x40000e20 + 0x0000000040000e24 r_ke_msg_alloc = 0x40000e24 + 0x0000000040000e28 r_ke_msg_dest_id_get = 0x40000e28 + 0x0000000040000e2c r_ke_msg_discard = 0x40000e2c + 0x0000000040000e30 r_ke_msg_forward = 0x40000e30 + 0x0000000040000e34 r_ke_msg_forward_new_id = 0x40000e34 + 0x0000000040000e38 r_ke_msg_free = 0x40000e38 + 0x0000000040000e3c r_ke_msg_in_queue = 0x40000e3c + 0x0000000040000e40 r_ke_msg_save = 0x40000e40 + 0x0000000040000e44 r_ke_msg_send = 0x40000e44 + 0x0000000040000e48 r_ke_msg_send_basic = 0x40000e48 + 0x0000000040000e4c r_ke_msg_src_id_get = 0x40000e4c + 0x0000000040000e50 r_ke_queue_extract = 0x40000e50 + 0x0000000040000e54 r_ke_queue_insert = 0x40000e54 + 0x0000000040000e58 r_ke_sleep_check = 0x40000e58 + 0x0000000040000e5c r_ke_state_get = 0x40000e5c + 0x0000000040000e60 r_ke_state_set = 0x40000e60 + 0x0000000040000e64 r_ke_task_check = 0x40000e64 + 0x0000000040000e68 r_ke_task_create = 0x40000e68 + 0x0000000040000e6c r_ke_task_delete = 0x40000e6c + 0x0000000040000e70 r_ke_task_handler_get = 0x40000e70 + 0x0000000040000e74 r_ke_task_init = 0x40000e74 + 0x0000000040000e78 r_ke_task_msg_flush = 0x40000e78 + 0x0000000040000e7c r_ke_task_saved_update = 0x40000e7c + 0x0000000040000e80 r_ke_task_schedule = 0x40000e80 + 0x0000000040000e84 r_ke_time = 0x40000e84 + 0x0000000040000e88 r_ke_time_cmp = 0x40000e88 + 0x0000000040000e8c r_ke_time_past = 0x40000e8c + 0x0000000040000e90 r_ke_timer_active = 0x40000e90 + 0x0000000040000e94 r_ke_timer_adjust_all = 0x40000e94 + 0x0000000040000e98 r_ke_timer_clear = 0x40000e98 + 0x0000000040000e9c r_ke_timer_init = 0x40000e9c + 0x0000000040000ea0 r_ke_timer_schedule = 0x40000ea0 + 0x0000000040000ea4 r_ke_timer_set = 0x40000ea4 + 0x0000000040000ea8 r_led_init = 0x40000ea8 + 0x0000000040000eac r_led_set_all = 0x40000eac + 0x0000000040000eb0 r_llc_aes_res_cb = 0x40000eb0 + 0x0000000040000eb4 r_llc_ch_map_up_proc_err_cb = 0x40000eb4 + 0x0000000040000eb8 r_llc_cleanup = 0x40000eb8 + 0x0000000040000ebc r_llc_cmd_cmp_send = 0x40000ebc + 0x0000000040000ec0 r_llc_cmd_stat_send = 0x40000ec0 + 0x0000000040000ec4 r_llc_con_move_cbk = 0x40000ec4 + 0x0000000040000ec8 r_llc_con_plan_set_update = 0x40000ec8 + 0x0000000040000ecc r_llc_con_upd_param_in_range = 0x40000ecc + 0x0000000040000ed0 r_llc_disconnect = 0x40000ed0 + 0x0000000040000ed4 r_llc_disconnect_end = 0x40000ed4 + 0x0000000040000ed8 r_llc_disconnect_proc_continue = 0x40000ed8 + 0x0000000040000edc r_llc_disconnect_proc_err_cb = 0x40000edc + 0x0000000040000ee0 r_llc_dl_chg_check = 0x40000ee0 + 0x0000000040000ee4 r_llc_dle_proc_err_cb = 0x40000ee4 + 0x0000000040000ee8 r_llc_feats_exch_proc_err_cb = 0x40000ee8 + 0x0000000040000eec r_llc_hci_cmd_handler_tab_p_get = 0x40000eec + 0x0000000040000ef0 r_llc_hci_command_handler = 0x40000ef0 + 0x0000000040000ef4 r_llc_hci_con_param_req_evt_send = 0x40000ef4 + 0x0000000040000ef8 r_llc_hci_con_upd_info_send = 0x40000ef8 + 0x0000000040000efc r_llc_hci_disconnected_dis = 0x40000efc + 0x0000000040000f00 r_llc_hci_dl_upd_info_send = 0x40000f00 + 0x0000000040000f04 r_llc_hci_enc_evt_send = 0x40000f04 + 0x0000000040000f08 r_llc_hci_feats_info_send = 0x40000f08 + 0x0000000040000f0c r_llc_hci_le_phy_upd_cmp_evt_send = 0x40000f0c + 0x0000000040000f10 r_llc_hci_ltk_request_evt_send = 0x40000f10 + 0x0000000040000f14 r_llc_hci_nb_cmp_pkts_evt_send = 0x40000f14 + 0x0000000040000f18 r_llc_hci_version_info_send = 0x40000f18 + 0x0000000040000f1c r_llc_init_term_proc = 0x40000f1c + 0x0000000040000f20 r_llc_iv_skd_rand_gen = 0x40000f20 + 0x0000000040000f24 r_llc_le_ping_proc_continue = 0x40000f24 + 0x0000000040000f28 r_llc_le_ping_proc_err_cb = 0x40000f28 + 0x0000000040000f2c r_llc_le_ping_restart = 0x40000f2c + 0x0000000040000f30 r_llc_le_ping_set = 0x40000f30 + 0x0000000040000f34 r_llc_ll_pause_enc_rsp_ack_handler = 0x40000f34 + 0x0000000040000f38 r_llc_ll_reject_ind_ack_handler = 0x40000f38 + 0x0000000040000f3c r_llc_ll_reject_ind_pdu_send = 0x40000f3c + 0x0000000040000f40 r_llc_ll_start_enc_rsp_ack_handler = 0x40000f40 + 0x0000000040000f44 r_llc_ll_terminate_ind_ack = 0x40000f44 + 0x0000000040000f48 r_llc_ll_unknown_ind_handler = 0x40000f48 + 0x0000000040000f4c r_llc_llcp_send = 0x40000f4c + 0x0000000040000f50 r_llc_llcp_state_set = 0x40000f50 + 0x0000000040000f54 r_llc_llcp_trans_timer_set = 0x40000f54 + 0x0000000040000f58 r_llc_llcp_tx_check = 0x40000f58 + 0x0000000040000f5c r_llc_loc_ch_map_proc_continue = 0x40000f5c + 0x0000000040000f60 r_llc_loc_con_upd_proc_continue = 0x40000f60 + 0x0000000040000f64 r_llc_loc_con_upd_proc_err_cb = 0x40000f64 + 0x0000000040000f68 r_llc_loc_dl_upd_proc_continue = 0x40000f68 + 0x0000000040000f6c r_llc_loc_encrypt_proc_continue = 0x40000f6c + 0x0000000040000f70 r_llc_loc_encrypt_proc_err_cb = 0x40000f70 + 0x0000000040000f74 r_llc_loc_feats_exch_proc_continue = 0x40000f74 + 0x0000000040000f78 r_llc_loc_phy_upd_proc_continue = 0x40000f78 + 0x0000000040000f7c r_llc_loc_phy_upd_proc_err_cb = 0x40000f7c + 0x0000000040000f80 r_llc_msg_handler_tab_p_get = 0x40000f80 + 0x0000000040000f84 r_llc_pref_param_compute = 0x40000f84 + 0x0000000040000f88 r_llc_proc_collision_check = 0x40000f88 + 0x0000000040000f8c r_llc_proc_err_ind = 0x40000f8c + 0x0000000040000f90 r_llc_proc_get = 0x40000f90 + 0x0000000040000f94 r_llc_proc_id_get = 0x40000f94 + 0x0000000040000f98 r_llc_proc_reg = 0x40000f98 + 0x0000000040000f9c r_llc_proc_state_get = 0x40000f9c + 0x0000000040000fa0 r_llc_proc_state_set = 0x40000fa0 + 0x0000000040000fa4 r_llc_proc_timer_pause_set = 0x40000fa4 + 0x0000000040000fa8 r_llc_proc_timer_set = 0x40000fa8 + 0x0000000040000fac r_llc_proc_unreg = 0x40000fac + 0x0000000040000fb0 r_llc_rem_ch_map_proc_continue = 0x40000fb0 + 0x0000000040000fb4 r_llc_rem_con_upd_proc_continue = 0x40000fb4 + 0x0000000040000fb8 r_llc_rem_con_upd_proc_err_cb = 0x40000fb8 + 0x0000000040000fbc r_llc_rem_dl_upd_proc = 0x40000fbc + 0x0000000040000fc0 r_llc_rem_encrypt_proc_continue = 0x40000fc0 + 0x0000000040000fc4 r_llc_rem_encrypt_proc_err_cb = 0x40000fc4 + 0x0000000040000fc8 r_llc_rem_phy_upd_proc_continue = 0x40000fc8 + 0x0000000040000fcc r_llc_rem_phy_upd_proc_err_cb = 0x40000fcc + 0x0000000040000fd0 r_llc_role_get = 0x40000fd0 + 0x0000000040000fd4 r_llc_sk_gen = 0x40000fd4 + 0x0000000040000fd8 r_llc_start = 0x40000fd8 + 0x0000000040000fdc r_llc_stop = 0x40000fdc + 0x0000000040000fe0 r_llc_ver_exch_loc_proc_continue = 0x40000fe0 + 0x0000000040000fe4 r_llc_ver_proc_err_cb = 0x40000fe4 + 0x0000000040000fe8 r_llcp_pdu_handler_tab_p_get = 0x40000fe8 + 0x0000000040000fec r_lld_aa_gen = 0x40000fec + 0x0000000040000ff0 r_lld_adv_adv_data_set = 0x40000ff0 + 0x0000000040000ff4 r_lld_adv_adv_data_update = 0x40000ff4 + 0x0000000040000ff8 r_lld_adv_aux_ch_idx_set = 0x40000ff8 + 0x0000000040000ffc r_lld_adv_aux_evt_canceled_cbk = 0x40000ffc + 0x0000000040001000 r_lld_adv_aux_evt_start_cbk = 0x40001000 + 0x0000000040001004 r_lld_adv_coex_check_ext_adv_synced = 0x40001004 + 0x0000000040001008 r_lld_adv_coex_env_reset = 0x40001008 + 0x000000004000100c r_lld_adv_duration_update = 0x4000100c + 0x0000000040001010 r_lld_adv_dynamic_pti_process = 0x40001010 + 0x0000000040001014 r_lld_adv_end = 0x40001014 + 0x0000000040001018 r_lld_adv_evt_canceled_cbk = 0x40001018 + 0x000000004000101c r_lld_adv_evt_start_cbk = 0x4000101c + 0x0000000040001020 r_lld_adv_ext_chain_construct = 0x40001020 + 0x0000000040001024 r_lld_adv_ext_pkt_prepare = 0x40001024 + 0x0000000040001028 r_lld_adv_frm_cbk = 0x40001028 + 0x000000004000102c r_lld_adv_frm_isr = 0x4000102c + 0x0000000040001030 r_lld_adv_frm_skip_isr = 0x40001030 + 0x0000000040001034 r_lld_adv_init = 0x40001034 + 0x0000000040001038 r_lld_adv_pkt_rx = 0x40001038 + 0x000000004000103c r_lld_adv_pkt_rx_connect_ind = 0x4000103c + 0x0000000040001040 r_lld_adv_pkt_rx_send_scan_req_evt = 0x40001040 + 0x0000000040001044 r_lld_adv_rand_addr_update = 0x40001044 + 0x0000000040001048 r_lld_adv_restart = 0x40001048 + 0x000000004000104c r_lld_adv_scan_rsp_data_set = 0x4000104c + 0x0000000040001050 r_lld_adv_scan_rsp_data_update = 0x40001050 + 0x0000000040001054 r_lld_adv_set_tx_power = 0x40001054 + 0x0000000040001058 r_lld_adv_start = 0x40001058 + 0x000000004000105c r_lld_adv_stop = 0x4000105c + 0x0000000040001060 r_lld_adv_sync_info_set = 0x40001060 + 0x0000000040001064 r_lld_adv_sync_info_update = 0x40001064 + 0x0000000040001068 r_lld_calc_aux_rx = 0x40001068 + 0x000000004000106c r_lld_cca_alloc = 0x4000106c + 0x0000000040001070 r_lld_cca_data_reset = 0x40001070 + 0x0000000040001074 r_lld_cca_free = 0x40001074 + 0x0000000040001078 r_lld_ch_assess_data_get = 0x40001078 + 0x000000004000107c r_lld_ch_idx_get = 0x4000107c + 0x0000000040001080 r_lld_ch_map_set = 0x40001080 + 0x0000000040001084 r_lld_channel_assess = 0x40001084 + 0x0000000040001088 r_lld_con_activity_act_offset_compute = 0x40001088 + 0x000000004000108c r_lld_con_activity_offset_compute = 0x4000108c + 0x0000000040001090 r_lld_con_ch_map_update = 0x40001090 + 0x0000000040001094 r_lld_con_cleanup = 0x40001094 + 0x0000000040001098 r_lld_con_current_tx_power_get = 0x40001098 + 0x000000004000109c r_lld_con_data_flow_set = 0x4000109c + 0x00000000400010a0 r_lld_con_data_len_update = 0x400010a0 + 0x00000000400010a4 r_lld_con_data_tx = 0x400010a4 + 0x00000000400010a8 r_lld_con_enc_key_load = 0x400010a8 + 0x00000000400010ac r_lld_con_event_counter_get = 0x400010ac + 0x00000000400010b0 r_lld_con_evt_canceled_cbk = 0x400010b0 + 0x00000000400010b4 r_lld_con_evt_duration_min_get = 0x400010b4 + 0x00000000400010b8 r_lld_con_evt_max_eff_time_cal = 0x400010b8 + 0x00000000400010bc r_lld_con_evt_sd_evt_time_get = 0x400010bc + 0x00000000400010c0 r_lld_con_evt_start_cbk = 0x400010c0 + 0x00000000400010c4 r_lld_con_evt_time_update = 0x400010c4 + 0x00000000400010c8 r_lld_con_free_all_tx_buf = 0x400010c8 + 0x00000000400010cc r_lld_con_frm_cbk = 0x400010cc + 0x00000000400010d0 r_lld_con_frm_isr = 0x400010d0 + 0x00000000400010d4 r_lld_con_frm_skip_isr = 0x400010d4 + 0x00000000400010d8 r_lld_con_init = 0x400010d8 + 0x00000000400010dc r_lld_con_llcp_tx = 0x400010dc + 0x00000000400010e0 r_lld_con_max_lat_calc = 0x400010e0 + 0x00000000400010e4 r_lld_con_offset_get = 0x400010e4 + 0x00000000400010e8 r_lld_con_param_update = 0x400010e8 + 0x00000000400010ec r_lld_con_phys_update = 0x400010ec + 0x00000000400010f0 r_lld_con_pref_slave_evt_dur_set = 0x400010f0 + 0x00000000400010f4 r_lld_con_pref_slave_latency_set = 0x400010f4 + 0x00000000400010f8 r_lld_con_rssi_get = 0x400010f8 + 0x00000000400010fc r_lld_con_rx = 0x400010fc + 0x0000000040001100 r_lld_con_rx_channel_assess = 0x40001100 + 0x0000000040001104 r_lld_con_rx_enc = 0x40001104 + 0x0000000040001108 r_lld_con_rx_isr = 0x40001108 + 0x000000004000110c r_lld_con_rx_link_info_check = 0x4000110c + 0x0000000040001110 r_lld_con_rx_llcp_check = 0x40001110 + 0x0000000040001114 r_lld_con_rx_sync_time_update = 0x40001114 + 0x0000000040001118 r_lld_con_sched = 0x40001118 + 0x000000004000111c r_lld_con_set_tx_power = 0x4000111c + 0x0000000040001120 r_lld_con_start = 0x40001120 + 0x0000000040001124 r_lld_con_stop = 0x40001124 + 0x0000000040001128 r_lld_con_tx = 0x40001128 + 0x000000004000112c r_lld_con_tx_enc = 0x4000112c + 0x0000000040001130 r_lld_con_tx_isr = 0x40001130 + 0x0000000040001134 r_lld_con_tx_len_update = 0x40001134 + 0x0000000040001138 r_lld_con_tx_len_update_for_intv = 0x40001138 + 0x000000004000113c r_lld_con_tx_len_update_for_rate = 0x4000113c + 0x0000000040001140 r_lld_con_tx_prog = 0x40001140 + 0x0000000040001144 r_lld_conn_dynamic_pti_process = 0x40001144 + 0x0000000040001148 r_lld_continue_scan_rx_isr_end_process = 0x40001148 + 0x000000004000114c r_lld_ext_scan_dynamic_pti_process = 0x4000114c + 0x0000000040001150 r_lld_hw_cca_end_isr = 0x40001150 + 0x0000000040001154 r_lld_hw_cca_evt_handler = 0x40001154 + 0x0000000040001158 r_lld_hw_cca_isr = 0x40001158 + 0x000000004000115c r_lld_init_cal_anchor_point = 0x4000115c + 0x0000000040001160 r_lld_init_compute_winoffset = 0x40001160 + 0x0000000040001164 r_lld_init_connect_req_pack = 0x40001164 + 0x0000000040001168 r_lld_init_end = 0x40001168 + 0x000000004000116c r_lld_init_evt_canceled_cbk = 0x4000116c + 0x0000000040001170 r_lld_init_evt_start_cbk = 0x40001170 + 0x0000000040001174 r_lld_init_frm_cbk = 0x40001174 + 0x0000000040001178 r_lld_init_frm_eof_isr = 0x40001178 + 0x000000004000117c r_lld_init_frm_skip_isr = 0x4000117c + 0x0000000040001180 r_lld_init_init = 0x40001180 + 0x0000000040001184 r_lld_init_process_pkt_rx = 0x40001184 + 0x0000000040001188 r_lld_init_process_pkt_rx_adv_ext_ind = 0x40001188 + 0x000000004000118c r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x4000118c + 0x0000000040001190 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40001190 + 0x0000000040001194 r_lld_init_process_pkt_tx = 0x40001194 + 0x0000000040001198 r_lld_init_process_pkt_tx_cal_con_timestamp = 0x40001198 + 0x000000004000119c r_lld_init_sched = 0x4000119c + 0x00000000400011a0 r_lld_init_set_tx_power = 0x400011a0 + 0x00000000400011a4 r_lld_init_start = 0x400011a4 + 0x00000000400011a8 r_lld_init_stop = 0x400011a8 + 0x00000000400011ac r_lld_instant_proc_end = 0x400011ac + 0x00000000400011b0 r_lld_llcp_rx_ind_handler = 0x400011b0 + 0x00000000400011b4 r_lld_per_adv_ch_map_update = 0x400011b4 + 0x00000000400011b8 r_lld_per_adv_chain_construct = 0x400011b8 + 0x00000000400011bc r_lld_per_adv_cleanup = 0x400011bc + 0x00000000400011c0 r_lld_per_adv_coex_env_reset = 0x400011c0 + 0x00000000400011c4 r_lld_per_adv_data_set = 0x400011c4 + 0x00000000400011c8 r_lld_per_adv_data_update = 0x400011c8 + 0x00000000400011cc r_lld_per_adv_dynamic_pti_process = 0x400011cc + 0x00000000400011d0 r_lld_per_adv_evt_canceled_cbk = 0x400011d0 + 0x00000000400011d4 r_lld_per_adv_evt_start_cbk = 0x400011d4 + 0x00000000400011d8 r_lld_per_adv_ext_pkt_prepare = 0x400011d8 + 0x00000000400011dc r_lld_per_adv_frm_cbk = 0x400011dc + 0x00000000400011e0 r_lld_per_adv_frm_isr = 0x400011e0 + 0x00000000400011e4 r_lld_per_adv_frm_skip_isr = 0x400011e4 + 0x00000000400011e8 r_lld_per_adv_init = 0x400011e8 + 0x00000000400011ec r_lld_per_adv_init_info_get = 0x400011ec + 0x00000000400011f0 r_lld_per_adv_list_add = 0x400011f0 + 0x00000000400011f4 r_lld_per_adv_list_rem = 0x400011f4 + 0x00000000400011f8 r_lld_per_adv_sched = 0x400011f8 + 0x00000000400011fc r_lld_per_adv_set_tx_power = 0x400011fc + 0x0000000040001200 r_lld_per_adv_start = 0x40001200 + 0x0000000040001204 r_lld_per_adv_stop = 0x40001204 + 0x0000000040001208 r_lld_per_adv_sync_info_get = 0x40001208 + 0x000000004000120c r_lld_process_cca_data = 0x4000120c + 0x0000000040001210 r_lld_ral_search = 0x40001210 + 0x0000000040001214 r_lld_read_clock = 0x40001214 + 0x0000000040001218 r_lld_res_list_add = 0x40001218 + 0x000000004000121c r_lld_res_list_clear = 0x4000121c + 0x0000000040001220 r_lld_res_list_is_empty = 0x40001220 + 0x0000000040001224 r_lld_res_list_local_rpa_get = 0x40001224 + 0x0000000040001228 r_lld_res_list_peer_rpa_get = 0x40001228 + 0x000000004000122c r_lld_res_list_peer_update = 0x4000122c + 0x0000000040001230 r_lld_res_list_priv_mode_update = 0x40001230 + 0x0000000040001234 r_lld_res_list_rem = 0x40001234 + 0x0000000040001238 r_lld_reset_reg = 0x40001238 + 0x000000004000123c r_lld_rpa_renew = 0x4000123c + 0x0000000040001240 r_lld_rpa_renew_evt_canceled_cbk = 0x40001240 + 0x0000000040001244 r_lld_rpa_renew_evt_start_cbk = 0x40001244 + 0x0000000040001248 r_lld_rpa_renew_instant_cbk = 0x40001248 + 0x000000004000124c r_lld_rxdesc_check = 0x4000124c + 0x0000000040001250 r_lld_rxdesc_free = 0x40001250 + 0x0000000040001254 r_lld_scan_create_sync = 0x40001254 + 0x0000000040001258 r_lld_scan_create_sync_cancel = 0x40001258 + 0x000000004000125c r_lld_scan_end = 0x4000125c + 0x0000000040001260 r_lld_scan_evt_canceled_cbk = 0x40001260 + 0x0000000040001264 r_lld_scan_evt_start_cbk = 0x40001264 + 0x0000000040001268 r_lld_scan_frm_cbk = 0x40001268 + 0x000000004000126c r_lld_scan_frm_eof_isr = 0x4000126c + 0x0000000040001270 r_lld_scan_frm_rx_isr = 0x40001270 + 0x0000000040001274 r_lld_scan_frm_skip_isr = 0x40001274 + 0x0000000040001278 r_lld_scan_init = 0x40001278 + 0x000000004000127c r_lld_scan_params_update = 0x4000127c + 0x0000000040001280 r_lld_scan_process_pkt_rx = 0x40001280 + 0x0000000040001284 r_lld_scan_process_pkt_rx_adv_rep = 0x40001284 + 0x0000000040001288 r_lld_scan_process_pkt_rx_aux_adv_ind = 0x40001288 + 0x000000004000128c r_lld_scan_process_pkt_rx_aux_chain_ind = 0x4000128c + 0x0000000040001290 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40001290 + 0x0000000040001294 r_lld_scan_process_pkt_rx_ext_adv = 0x40001294 + 0x0000000040001298 r_lld_scan_process_pkt_rx_ext_adv_ind = 0x40001298 + 0x000000004000129c r_lld_scan_process_pkt_rx_legacy_adv = 0x4000129c + 0x00000000400012a0 r_lld_scan_restart = 0x400012a0 + 0x00000000400012a4 r_lld_scan_sched = 0x400012a4 + 0x00000000400012a8 r_lld_scan_set_tx_power = 0x400012a8 + 0x00000000400012ac r_lld_scan_start = 0x400012ac + 0x00000000400012b0 r_lld_scan_stop = 0x400012b0 + 0x00000000400012b4 r_lld_scan_sync_accept = 0x400012b4 + 0x00000000400012b8 r_lld_scan_sync_info_unpack = 0x400012b8 + 0x00000000400012bc r_lld_scan_trunc_ind = 0x400012bc + 0x00000000400012c0 r_lld_sw_cca_evt_handler = 0x400012c0 + 0x00000000400012c4 r_lld_sw_cca_isr = 0x400012c4 + 0x00000000400012c8 r_lld_sync_ch_map_update = 0x400012c8 + 0x00000000400012cc r_lld_sync_cleanup = 0x400012cc + 0x00000000400012d0 r_lld_sync_evt_canceled_cbk = 0x400012d0 + 0x00000000400012d4 r_lld_sync_evt_start_cbk = 0x400012d4 + 0x00000000400012d8 r_lld_sync_frm_cbk = 0x400012d8 + 0x00000000400012dc r_lld_sync_frm_eof_isr = 0x400012dc + 0x00000000400012e0 r_lld_sync_frm_rx_isr = 0x400012e0 + 0x00000000400012e4 r_lld_sync_frm_skip_isr = 0x400012e4 + 0x00000000400012e8 r_lld_sync_init = 0x400012e8 + 0x00000000400012ec r_lld_sync_process_pkt_rx = 0x400012ec + 0x00000000400012f0 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400012f0 + 0x00000000400012f4 r_lld_sync_process_pkt_rx_pkt_check = 0x400012f4 + 0x00000000400012f8 r_lld_sync_scan_dynamic_pti_process = 0x400012f8 + 0x00000000400012fc r_lld_sync_sched = 0x400012fc + 0x0000000040001300 r_lld_sync_start = 0x40001300 + 0x0000000040001304 r_lld_sync_stop = 0x40001304 + 0x0000000040001308 r_lld_sync_trunc_ind = 0x40001308 + 0x000000004000130c r_lld_test_cleanup = 0x4000130c + 0x0000000040001310 r_lld_test_evt_canceled_cbk = 0x40001310 + 0x0000000040001314 r_lld_test_evt_start_cbk = 0x40001314 + 0x0000000040001318 r_lld_test_freq2chnl = 0x40001318 + 0x000000004000131c r_lld_test_frm_cbk = 0x4000131c + 0x0000000040001320 r_lld_test_frm_isr = 0x40001320 + 0x0000000040001324 r_lld_test_init = 0x40001324 + 0x0000000040001328 r_lld_test_rx_isr = 0x40001328 + 0x000000004000132c r_lld_test_set_tx_power = 0x4000132c + 0x0000000040001330 r_lld_test_start = 0x40001330 + 0x0000000040001334 r_lld_test_stop = 0x40001334 + 0x0000000040001338 r_lld_update_rxbuf = 0x40001338 + 0x000000004000133c r_lld_update_rxbuf_isr = 0x4000133c + 0x0000000040001340 r_lld_white_list_add = 0x40001340 + 0x0000000040001344 r_lld_white_list_rem = 0x40001344 + 0x0000000040001348 r_llm_activity_free_get = 0x40001348 + 0x000000004000134c r_llm_activity_free_set = 0x4000134c + 0x0000000040001350 r_llm_activity_syncing_get = 0x40001350 + 0x0000000040001354 r_llm_adv_con_len_check = 0x40001354 + 0x0000000040001358 r_llm_adv_hdl_to_id = 0x40001358 + 0x000000004000135c r_llm_adv_rep_flow_control_check = 0x4000135c + 0x0000000040001360 r_llm_adv_rep_flow_control_update = 0x40001360 + 0x0000000040001364 r_llm_adv_reports_list_check = 0x40001364 + 0x0000000040001368 r_llm_adv_set_all_release = 0x40001368 + 0x000000004000136c r_llm_adv_set_dft_params = 0x4000136c + 0x0000000040001370 r_llm_adv_set_release = 0x40001370 + 0x0000000040001374 r_llm_aes_res_cb = 0x40001374 + 0x0000000040001378 r_llm_ble_update_adv_flow_control = 0x40001378 + 0x000000004000137c r_llm_ch_map_update = 0x4000137c + 0x0000000040001380 r_llm_cmd_cmp_send = 0x40001380 + 0x0000000040001384 r_llm_cmd_stat_send = 0x40001384 + 0x0000000040001388 r_llm_dev_list_empty_entry = 0x40001388 + 0x000000004000138c r_llm_dev_list_search = 0x4000138c + 0x0000000040001390 r_llm_env_adv_dup_filt_deinit = 0x40001390 + 0x0000000040001394 r_llm_env_adv_dup_filt_init = 0x40001394 + 0x0000000040001398 r_llm_init_ble_adv_report_flow_contol = 0x40001398 + 0x000000004000139c r_llm_is_dev_connected = 0x4000139c + 0x00000000400013a0 r_llm_is_dev_synced = 0x400013a0 + 0x00000000400013a4 r_llm_is_non_con_act_ongoing_check = 0x400013a4 + 0x00000000400013a8 r_llm_is_wl_accessible = 0x400013a8 + 0x00000000400013ac r_llm_le_evt_mask_check = 0x400013ac + 0x00000000400013b0 r_llm_le_features_get = 0x400013b0 + 0x00000000400013b4 r_llm_link_disc = 0x400013b4 + 0x00000000400013b8 r_llm_master_ch_map_get = 0x400013b8 + 0x00000000400013bc r_llm_msg_handler_tab_p_get = 0x400013bc + 0x00000000400013c0 r_llm_no_activity = 0x400013c0 + 0x00000000400013c4 r_llm_per_adv_slot_dur = 0x400013c4 + 0x00000000400013c8 r_llm_plan_elt_get = 0x400013c8 + 0x00000000400013cc r_llm_rx_path_comp_get = 0x400013cc + 0x00000000400013d0 r_llm_scan_start = 0x400013d0 + 0x00000000400013d4 r_llm_scan_sync_acad_attach = 0x400013d4 + 0x00000000400013d8 r_llm_scan_sync_acad_detach = 0x400013d8 + 0x00000000400013dc r_llm_send_adv_lost_event_to_host = 0x400013dc + 0x00000000400013e0 r_llm_tx_path_comp_get = 0x400013e0 + 0x00000000400013e4 r_misc_deinit = 0x400013e4 + 0x00000000400013e8 r_misc_free_em_buf_in_isr = 0x400013e8 + 0x00000000400013ec r_misc_init = 0x400013ec + 0x00000000400013f0 r_misc_msg_handler_tab_p_get = 0x400013f0 + 0x00000000400013f4 r_notEqual256 = 0x400013f4 + 0x00000000400013f8 r_phy_upd_proc_start = 0x400013f8 + 0x00000000400013fc r_platform_reset = 0x400013fc + 0x0000000040001400 r_register_esp_vendor_cmd_handler = 0x40001400 + 0x0000000040001404 r_rf_em_init = 0x40001404 + 0x0000000040001408 r_rf_force_agc_enable = 0x40001408 + 0x000000004000140c r_rf_reg_rd = 0x4000140c + 0x0000000040001410 r_rf_reg_wr = 0x40001410 + 0x0000000040001414 r_rf_reset = 0x40001414 + 0x0000000040001418 r_rf_rssi_convert = 0x40001418 + 0x000000004000141c r_rf_rw_v9_le_disable = 0x4000141c + 0x0000000040001420 r_rf_rw_v9_le_enable = 0x40001420 + 0x0000000040001424 r_rf_sleep = 0x40001424 + 0x0000000040001428 r_rf_txpwr_cs_get = 0x40001428 + 0x000000004000142c r_rf_txpwr_dbm_get = 0x4000142c + 0x0000000040001430 r_rf_util_cs_fmt_convert = 0x40001430 + 0x0000000040001434 r_rw_crypto_aes_ccm = 0x40001434 + 0x0000000040001438 r_rw_crypto_aes_encrypt = 0x40001438 + 0x000000004000143c r_rw_crypto_aes_init = 0x4000143c + 0x0000000040001440 r_rw_crypto_aes_k1 = 0x40001440 + 0x0000000040001444 r_rw_crypto_aes_k2 = 0x40001444 + 0x0000000040001448 r_rw_crypto_aes_k3 = 0x40001448 + 0x000000004000144c r_rw_crypto_aes_k4 = 0x4000144c + 0x0000000040001450 r_rw_crypto_aes_rand = 0x40001450 + 0x0000000040001454 r_rw_crypto_aes_result_handler = 0x40001454 + 0x0000000040001458 r_rw_crypto_aes_s1 = 0x40001458 + 0x000000004000145c r_rw_cryto_aes_cmac = 0x4000145c + 0x0000000040001460 r_rw_v9_init_em_radio_table = 0x40001460 + 0x0000000040001464 r_rwble_isr = 0x40001464 + 0x0000000040001468 r_rwble_sleep_enter = 0x40001468 + 0x000000004000146c r_rwble_sleep_wakeup_end = 0x4000146c + 0x0000000040001470 r_rwbtdm_isr_wrapper = 0x40001470 + 0x0000000040001474 r_rwip_active_check = 0x40001474 + 0x0000000040001478 r_rwip_aes_encrypt = 0x40001478 + 0x000000004000147c r_rwip_assert = 0x4000147c + 0x0000000040001480 r_rwip_crypt_evt_handler = 0x40001480 + 0x0000000040001484 r_rwip_crypt_isr_handler = 0x40001484 + 0x0000000040001488 r_rwip_eif_get = 0x40001488 + 0x000000004000148c r_rwip_half_slot_2_lpcycles = 0x4000148c + 0x0000000040001490 r_rwip_hus_2_lpcycles = 0x40001490 + 0x0000000040001494 r_rwip_isr = 0x40001494 + 0x0000000040001498 r_rwip_lpcycles_2_hus = 0x40001498 + 0x000000004000149c r_rwip_prevent_sleep_clear = 0x4000149c + 0x00000000400014a0 r_rwip_prevent_sleep_set = 0x400014a0 + 0x00000000400014a4 r_rwip_schedule = 0x400014a4 + 0x00000000400014a8 r_rwip_sleep = 0x400014a8 + 0x00000000400014ac r_rwip_sw_int_handler = 0x400014ac + 0x00000000400014b0 r_rwip_sw_int_req = 0x400014b0 + 0x00000000400014b4 r_rwip_time_get = 0x400014b4 + 0x00000000400014b8 r_rwip_timer_10ms_handler = 0x400014b8 + 0x00000000400014bc r_rwip_timer_10ms_set = 0x400014bc + 0x00000000400014c0 r_rwip_timer_hs_handler = 0x400014c0 + 0x00000000400014c4 r_rwip_timer_hs_set = 0x400014c4 + 0x00000000400014c8 r_rwip_timer_hus_handler = 0x400014c8 + 0x00000000400014cc r_rwip_timer_hus_set = 0x400014cc + 0x00000000400014d0 r_rwip_wakeup = 0x400014d0 + 0x00000000400014d4 r_rwip_wakeup_end = 0x400014d4 + 0x00000000400014d8 r_rwip_wlcoex_set = 0x400014d8 + 0x00000000400014dc r_sch_alarm_clear = 0x400014dc + 0x00000000400014e0 r_sch_alarm_init = 0x400014e0 + 0x00000000400014e4 r_sch_alarm_prog = 0x400014e4 + 0x00000000400014e8 r_sch_alarm_set = 0x400014e8 + 0x00000000400014ec r_sch_alarm_timer_isr = 0x400014ec + 0x00000000400014f0 r_sch_arb_conflict_check = 0x400014f0 + 0x00000000400014f4 r_sch_arb_elt_cancel = 0x400014f4 + 0x00000000400014f8 r_sch_arb_event_start_isr = 0x400014f8 + 0x00000000400014fc r_sch_arb_init = 0x400014fc + 0x0000000040001500 r_sch_arb_insert = 0x40001500 + 0x0000000040001504 r_sch_arb_prog_timer = 0x40001504 + 0x0000000040001508 r_sch_arb_remove = 0x40001508 + 0x000000004000150c r_sch_arb_sw_isr = 0x4000150c + 0x0000000040001510 r_sch_plan_chk = 0x40001510 + 0x0000000040001514 r_sch_plan_clock_wrap_offset_update = 0x40001514 + 0x0000000040001518 r_sch_plan_init = 0x40001518 + 0x000000004000151c r_sch_plan_interval_req = 0x4000151c + 0x0000000040001520 r_sch_plan_offset_max_calc = 0x40001520 + 0x0000000040001524 r_sch_plan_offset_req = 0x40001524 + 0x0000000040001528 r_sch_plan_position_range_compute = 0x40001528 + 0x000000004000152c r_sch_plan_rem = 0x4000152c + 0x0000000040001530 r_sch_plan_req = 0x40001530 + 0x0000000040001534 r_sch_plan_set = 0x40001534 + 0x0000000040001538 r_sch_prog_end_isr = 0x40001538 + 0x000000004000153c r_sch_prog_init = 0x4000153c + 0x0000000040001540 r_sch_prog_push = 0x40001540 + 0x0000000040001544 r_sch_prog_rx_isr = 0x40001544 + 0x0000000040001548 r_sch_prog_skip_isr = 0x40001548 + 0x000000004000154c r_sch_prog_tx_isr = 0x4000154c + 0x0000000040001550 r_sch_slice_bg_add = 0x40001550 + 0x0000000040001554 r_sch_slice_bg_remove = 0x40001554 + 0x0000000040001558 r_sch_slice_compute = 0x40001558 + 0x000000004000155c r_sch_slice_fg_add = 0x4000155c + 0x0000000040001560 r_sch_slice_fg_remove = 0x40001560 + 0x0000000040001564 r_sch_slice_init = 0x40001564 + 0x0000000040001568 r_sch_slice_per_add = 0x40001568 + 0x000000004000156c r_sch_slice_per_remove = 0x4000156c + 0x0000000040001570 r_sdk_config_get_bt_sleep_enable = 0x40001570 + 0x0000000040001574 r_sdk_config_get_hl_derived_opts = 0x40001574 + 0x0000000040001578 r_sdk_config_get_opts = 0x40001578 + 0x000000004000157c r_sdk_config_get_priv_opts = 0x4000157c + 0x0000000040001580 r_sdk_config_set_bt_sleep_enable = 0x40001580 + 0x0000000040001584 r_sdk_config_set_hl_derived_opts = 0x40001584 + 0x0000000040001588 r_sdk_config_set_opts = 0x40001588 + 0x000000004000158c r_specialModP256 = 0x4000158c + 0x0000000040001590 r_unloaded_area_init = 0x40001590 + 0x0000000040001594 r_vhci_flow_off = 0x40001594 + 0x0000000040001598 r_vhci_flow_on = 0x40001598 + 0x000000004000159c r_vhci_notify_host_send_available = 0x4000159c + 0x00000000400015a0 r_vhci_send_to_host = 0x400015a0 + 0x00000000400015a4 r_vnd_hci_command_handler = 0x400015a4 + 0x00000000400015a8 r_vshci_init = 0x400015a8 + 0x00000000400015ac vnd_hci_command_handler_wrapper = 0x400015ac + 0x000000003fcdffcc bt_rf_coex_cfg_p = 0x3fcdffcc + 0x000000003fcdffc8 bt_rf_coex_hooks_p = 0x3fcdffc8 + 0x000000003fcdffc4 btdm_env_p = 0x3fcdffc4 + 0x000000003fcdffc0 g_rw_controller_task_handle = 0x3fcdffc0 + 0x000000003fcdffbc g_rw_init_sem = 0x3fcdffbc + 0x000000003fcdffb8 g_rw_schd_queue = 0x3fcdffb8 + 0x000000003fcdffb4 lld_init_env = 0x3fcdffb4 + 0x000000003fcdffb0 lld_rpa_renew_env = 0x3fcdffb0 + 0x000000003fcdffac lld_scan_env = 0x3fcdffac + 0x000000003fcdffa8 lld_scan_sync_env = 0x3fcdffa8 + 0x000000003fcdffa4 lld_test_env = 0x3fcdffa4 + 0x000000003fcdffa0 p_ble_util_buf_env = 0x3fcdffa0 + 0x000000003fcdff9c p_lld_env = 0x3fcdff9c + 0x000000003fcdff98 p_llm_env = 0x3fcdff98 + 0x000000003fcdff94 r_h4tl_eif_p = 0x3fcdff94 + 0x000000003fcdff90 r_hli_funcs_p = 0x3fcdff90 + 0x000000003fcdff8c r_ip_funcs_p = 0x3fcdff8c + 0x000000003fcdff88 r_modules_funcs_p = 0x3fcdff88 + 0x000000003fcdff84 r_osi_funcs_p = 0x3fcdff84 + 0x000000003fcdff80 r_plf_funcs_p = 0x3fcdff80 + 0x000000003fcdff7c vhci_env_p = 0x3fcdff7c + 0x000000003fcdff78 aa_gen = 0x3fcdff78 + 0x000000003fcdff6c aes_env = 0x3fcdff6c + 0x000000003fcdff1c bt_rf_coex_cfg_cb = 0x3fcdff1c + 0x000000003fcdff18 btdm_pwr_state = 0x3fcdff18 + 0x000000003fcdff14 btdm_slp_err = 0x3fcdff14 + 0x000000003fcdff0c ecc_env = 0x3fcdff0c + 0x000000003fcdff04 esp_handler = 0x3fcdff04 + 0x000000003fcdfefc esp_vendor_cmd = 0x3fcdfefc + 0x000000003fcdfef8 g_adv_delay_dis = 0x3fcdfef8 + 0x000000003fcdfef4 g_conflict_elt = 0x3fcdfef4 + 0x000000003fcdfee4 g_eif_api = 0x3fcdfee4 + 0x000000003fcdfed8 g_event_empty = 0x3fcdfed8 + 0x000000003fcdfecc g_llc_state = 0x3fcdfecc + 0x000000003fcdfec8 g_llm_state = 0x3fcdfec8 + 0x000000003fcdfec4 g_max_evt_env = 0x3fcdfec4 + 0x000000003fcdfec0 g_misc_state = 0x3fcdfec0 + 0x000000003fcdfea4 g_rma_rule_db = 0x3fcdfea4 + 0x000000003fcdfe88 g_rtp_rule_db = 0x3fcdfe88 + 0x000000003fcdfe85 g_scan_forever = 0x3fcdfe85 + 0x000000003fcdfe84 g_time_msb = 0x3fcdfe84 + 0x000000003fcdfe5c h4tl_env = 0x3fcdfe5c + 0x000000003fcdfe38 hci_env = 0x3fcdfe38 + 0x000000003fcdfe34 hci_ext_host = 0x3fcdfe34 + 0x000000003fcdfe2c hci_fc_env = 0x3fcdfe2c + 0x000000003fcdfe00 hci_tl_env = 0x3fcdfe00 + 0x000000003fcdfdd0 ke_env = 0x3fcdfdd0 + 0x000000003fcdfd90 ke_event_env = 0x3fcdfd90 + 0x000000003fcdfd14 ke_task_env = 0x3fcdfd14 + 0x000000003fcdfcec llc_env = 0x3fcdfcec + 0x000000003fcdfcc4 lld_adv_env = 0x3fcdfcc4 + 0x000000003fcdfc9c lld_con_env = 0x3fcdfc9c + 0x000000003fcdfc94 lld_exp_sync_pos_tab = 0x3fcdfc94 + 0x000000003fcdfc6c lld_per_adv_env = 0x3fcdfc6c + 0x000000003fcdfc44 lld_sync_env = 0x3fcdfc44 + 0x000000003fcdfc38 llm_le_adv_flow_env = 0x3fcdfc38 + 0x000000003fcdfc34 rw_sleep_enable = 0x3fcdfc34 + 0x000000003fcdfc2c rwble_env = 0x3fcdfc2c + 0x000000003fcdfc10 rwip_env = 0x3fcdfc10 + 0x000000003fcdfc04 rwip_param = 0x3fcdfc04 + 0x000000003fcdfc00 rwip_prog_delay = 0x3fcdfc00 + 0x000000003fcdfbc8 rwip_rf = 0x3fcdfbc8 + 0x000000003fcdfbc0 sch_alarm_env = 0x3fcdfbc0 + 0x000000003fcdfbac sch_arb_env = 0x3fcdfbac + 0x000000003fcdfba4 sch_plan_env = 0x3fcdfba4 + 0x000000003fcdfaa0 sch_prog_env = 0x3fcdfaa0 + 0x000000003fcdfa40 sch_slice_env = 0x3fcdfa40 + 0x000000003fcdfa38 sch_slice_params = 0x3fcdfa38 + 0x000000003fcdfa30 timer_env = 0x3fcdfa30 + 0x000000003fcdfa2c unloaded_area = 0x3fcdfa2c + 0x000000003fcdfa28 vshci_state = 0x3fcdfa28 + 0x000000003fcdfa1c TASK_DESC_LLC = 0x3fcdfa1c + 0x000000003fcdfa10 TASK_DESC_LLM = 0x3fcdfa10 + 0x000000003fcdfa04 TASK_DESC_VSHCI = 0x3fcdfa04 + 0x000000003fcdf9fc co_default_bdaddr = 0x3fcdf9fc + 0x000000003fcdf9f8 dbg_assert_block = 0x3fcdf9f8 + 0x000000003fcdf9f4 g_bt_plf_log_level = 0x3fcdf9f4 + 0x000000003fcdf9d0 hci_cmd_desc_tab_vs_esp = 0x3fcdf9d0 + 0x000000003fcdf9b8 hci_command_handler_tab_esp = 0x3fcdf9b8 + 0x000000003fcdf9b4 privacy_en = 0x3fcdf9b4 + 0x000000003fcdf96c sdk_cfg_priv_opts = 0x3fcdf96c + 0x000000003ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x000000003ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x000000003ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x000000003ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x000000003ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x000000003ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x000000003ff1f79c LLM_AA_CT1 = 0x3ff1f79c + 0x000000003ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x000000003ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x000000003ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x000000003ff1f768 adv_evt_prop2type = 0x3ff1f768 + 0x000000003ff1f760 adv_evt_type2prop = 0x3ff1f760 + 0x000000003ff1f750 aes_cmac_zero = 0x3ff1f750 + 0x000000003ff1f740 aes_k2_salt = 0x3ff1f740 + 0x000000003ff1f738 aes_k3_id64 = 0x3ff1f738 + 0x000000003ff1f728 aes_k3_salt = 0x3ff1f728 + 0x000000003ff1f724 aes_k4_id6 = 0x3ff1f724 + 0x000000003ff1f714 aes_k4_salt = 0x3ff1f714 + 0x000000003ff1f6e8 bigHexP256 = 0x3ff1f6e8 + 0x000000003ff1f6e0 byte_tx_time = 0x3ff1f6e0 + 0x000000003ff1f6d8 co_null_bdaddr = 0x3ff1f6d8 + 0x000000003ff1f6d0 co_phy_mask_to_rate = 0x3ff1f6d0 + 0x000000003ff1f6c8 co_phy_mask_to_value = 0x3ff1f6c8 + 0x000000003ff1f6c4 co_phy_to_rate = 0x3ff1f6c4 + 0x000000003ff1f6c0 co_phy_value_to_mask = 0x3ff1f6c0 + 0x000000003ff1f6b8 co_rate_to_byte_dur_us = 0x3ff1f6b8 + 0x000000003ff1f6b0 co_rate_to_phy = 0x3ff1f6b0 + 0x000000003ff1f6ac co_rate_to_phy_mask = 0x3ff1f6ac + 0x000000003ff1f69c co_sca2ppm = 0x3ff1f69c + 0x000000003ff1f670 coef_B = 0x3ff1f670 + 0x000000003ff1f668 connect_req_dur_tab = 0x3ff1f668 + 0x000000003ff1f5e4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5e4 + 0x000000003ff1f518 em_base_reg_lut = 0x3ff1f518 + 0x000000003ff1f510 fixed_tx_time = 0x3ff1f510 + 0x000000003ff1f508 h4tl_msgtype2hdrlen = 0x3ff1f508 + 0x000000003ff1f4d8 hci_cmd_desc_root_tab = 0x3ff1f4d8 + 0x000000003ff1f46c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f46c + 0x000000003ff1f43c hci_cmd_desc_tab_info_par = 0x3ff1f43c + 0x000000003ff1f0a0 hci_cmd_desc_tab_le = 0x3ff1f0a0 + 0x000000003ff1f088 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f088 + 0x000000003ff1f07c hci_cmd_desc_tab_stat_par = 0x3ff1f07c + 0x000000003ff1f040 hci_cmd_desc_tab_vs = 0x3ff1f040 + 0x000000003ff1eff8 hci_evt_desc_tab = 0x3ff1eff8 + 0x000000003ff1ef58 hci_evt_le_desc_tab = 0x3ff1ef58 + 0x000000003ff1ef50 hci_evt_le_desc_tab_esp = 0x3ff1ef50 + 0x000000003ff1ef48 hci_rsvd_evt_msk = 0x3ff1ef48 + 0x000000003ff1ef44 lld_aux_phy_to_rate = 0x3ff1ef44 + 0x000000003ff1ef3c lld_init_max_aux_dur_tab = 0x3ff1ef3c + 0x000000003ff1ef34 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef34 + 0x000000003ff1ef2c lld_scan_max_aux_dur_tab = 0x3ff1ef2c + 0x000000003ff1ef24 lld_sync_max_aux_dur_tab = 0x3ff1ef24 + 0x000000003ff1ef1c llm_local_le_feats = 0x3ff1ef1c + 0x000000003ff1ef14 llm_local_le_states = 0x3ff1ef14 + 0x000000003ff1eeec llm_local_supp_cmds = 0x3ff1eeec + 0x000000003ff1eecc maxSecretKey_256 = 0x3ff1eecc + 0x000000003ff1eec4 max_data_tx_time = 0x3ff1eec4 + 0x000000003ff1eeb4 one_bits = 0x3ff1eeb4 + 0x000000003ff1eeac rwip_coex_cfg = 0x3ff1eeac + 0x000000003ff1ee94 rwip_priority = 0x3ff1ee94 + 0x000000003ff1ee48 veryBigHexP256 = 0x3ff1ee48 + 0x00000000400015b0 esp_pp_rom_version_get = 0x400015b0 + 0x00000000400015b4 RC_GetBlockAckTime = 0x400015b4 + 0x00000000400015b8 ebuf_list_remove = 0x400015b8 + 0x00000000400015bc esf_buf_alloc = 0x400015bc + 0x00000000400015c8 GetAccess = 0x400015c8 + 0x00000000400015cc hal_mac_is_low_rate_enabled = 0x400015cc + 0x00000000400015d0 hal_mac_tx_get_blockack = 0x400015d0 + 0x00000000400015d4 hal_mac_tx_set_ppdu = 0x400015d4 + 0x00000000400015d8 ic_get_trc = 0x400015d8 + 0x00000000400015dc ic_mac_deinit = 0x400015dc + 0x00000000400015e0 ic_mac_init = 0x400015e0 + 0x00000000400015e4 ic_interface_enabled = 0x400015e4 + 0x00000000400015e8 is_lmac_idle = 0x400015e8 + 0x00000000400015ec lmacAdjustTimestamp = 0x400015ec + 0x00000000400015f0 lmacDiscardAgedMSDU = 0x400015f0 + 0x00000000400015f4 lmacDiscardMSDU = 0x400015f4 + 0x00000000400015f8 lmacEndFrameExchangeSequence = 0x400015f8 + 0x00000000400015fc lmacIsIdle = 0x400015fc + 0x0000000040001600 lmacIsLongFrame = 0x40001600 + 0x0000000040001604 lmacMSDUAged = 0x40001604 + 0x0000000040001608 lmacPostTxComplete = 0x40001608 + 0x000000004000160c lmacProcessAllTxTimeout = 0x4000160c + 0x0000000040001610 lmacProcessCollisions = 0x40001610 + 0x0000000040001614 lmacProcessRxSucData = 0x40001614 + 0x0000000040001618 lmacReachLongLimit = 0x40001618 + 0x000000004000161c lmacReachShortLimit = 0x4000161c + 0x0000000040001620 lmacRecycleMPDU = 0x40001620 + 0x0000000040001624 lmacRxDone = 0x40001624 + 0x0000000040001628 lmacSetTxFrame = 0x40001628 + 0x0000000040001630 lmacTxFrame = 0x40001630 + 0x0000000040001634 mac_tx_set_duration = 0x40001634 + 0x0000000040001638 mac_tx_set_htsig = 0x40001638 + 0x000000004000163c mac_tx_set_plcp0 = 0x4000163c + 0x0000000040001640 mac_tx_set_plcp1 = 0x40001640 + 0x0000000040001644 mac_tx_set_plcp2 = 0x40001644 + 0x0000000040001648 pm_check_state = 0x40001648 + 0x000000004000164c pm_disable_dream_timer = 0x4000164c + 0x0000000040001650 pm_disable_sleep_delay_timer = 0x40001650 + 0x0000000040001654 pm_dream = 0x40001654 + 0x0000000040001658 pm_mac_wakeup = 0x40001658 + 0x000000004000165c pm_mac_sleep = 0x4000165c + 0x0000000040001660 pm_enable_active_timer = 0x40001660 + 0x0000000040001664 pm_enable_sleep_delay_timer = 0x40001664 + 0x0000000040001668 pm_local_tsf_process = 0x40001668 + 0x000000004000166c pm_set_beacon_filter = 0x4000166c + 0x0000000040001670 pm_is_in_wifi_slice_threshold = 0x40001670 + 0x0000000040001674 pm_is_waked = 0x40001674 + 0x0000000040001678 pm_keep_alive = 0x40001678 + 0x000000004000167c pm_on_beacon_rx = 0x4000167c + 0x0000000040001680 pm_on_data_rx = 0x40001680 + 0x0000000040001684 pm_on_tbtt = 0x40001684 + 0x0000000040001688 pm_parse_beacon = 0x40001688 + 0x000000004000168c pm_process_tim = 0x4000168c + 0x0000000040001690 pm_rx_beacon_process = 0x40001690 + 0x0000000040001694 pm_rx_data_process = 0x40001694 + 0x0000000040001698 pm_sleep = 0x40001698 + 0x000000004000169c pm_sleep_for = 0x4000169c + 0x00000000400016a0 pm_tbtt_process = 0x400016a0 + 0x00000000400016a4 ppAMPDU2Normal = 0x400016a4 + 0x00000000400016a8 ppAssembleAMPDU = 0x400016a8 + 0x00000000400016ac ppCalFrameTimes = 0x400016ac + 0x00000000400016b0 ppCalSubFrameLength = 0x400016b0 + 0x00000000400016b4 ppCalTxAMPDULength = 0x400016b4 + 0x00000000400016b8 ppCheckTxAMPDUlength = 0x400016b8 + 0x00000000400016bc ppDequeueRxq_Locked = 0x400016bc + 0x00000000400016c0 ppDequeueTxQ = 0x400016c0 + 0x00000000400016c4 ppEmptyDelimiterLength = 0x400016c4 + 0x00000000400016c8 ppEnqueueRxq = 0x400016c8 + 0x00000000400016cc ppEnqueueTxDone = 0x400016cc + 0x00000000400016d0 ppGetTxQFirstAvail_Locked = 0x400016d0 + 0x00000000400016d4 ppGetTxframe = 0x400016d4 + 0x00000000400016dc ppProcTxSecFrame = 0x400016dc + 0x00000000400016e0 ppProcessRxPktHdr = 0x400016e0 + 0x00000000400016e4 ppProcessTxQ = 0x400016e4 + 0x00000000400016e8 ppRecordBarRRC = 0x400016e8 + 0x00000000400016ec lmacRequestTxopQueue = 0x400016ec + 0x00000000400016f0 lmacReleaseTxopQueue = 0x400016f0 + 0x00000000400016f4 ppRecycleAmpdu = 0x400016f4 + 0x00000000400016f8 ppRecycleRxPkt = 0x400016f8 + 0x00000000400016fc ppResortTxAMPDU = 0x400016fc + 0x0000000040001700 ppResumeTxAMPDU = 0x40001700 + 0x0000000040001708 ppRxPkt = 0x40001708 + 0x000000004000170c ppRxProtoProc = 0x4000170c + 0x0000000040001710 ppSearchTxQueue = 0x40001710 + 0x0000000040001714 ppSearchTxframe = 0x40001714 + 0x0000000040001718 ppSelectNextQueue = 0x40001718 + 0x000000004000171c ppSubFromAMPDU = 0x4000171c + 0x0000000040001720 ppTask = 0x40001720 + 0x0000000040001724 ppTxPkt = 0x40001724 + 0x0000000040001728 ppTxProtoProc = 0x40001728 + 0x000000004000172c ppTxqUpdateBitmap = 0x4000172c + 0x0000000040001730 pp_coex_tx_request = 0x40001730 + 0x0000000040001734 pp_hdrsize = 0x40001734 + 0x0000000040001738 pp_post = 0x40001738 + 0x000000004000173c pp_process_hmac_waiting_txq = 0x4000173c + 0x0000000040001740 rcGetAmpduSched = 0x40001740 + 0x0000000040001744 rcUpdateRxDone = 0x40001744 + 0x0000000040001748 rc_get_trc = 0x40001748 + 0x000000004000174c rc_get_trc_by_index = 0x4000174c + 0x0000000040001750 rcAmpduLowerRate = 0x40001750 + 0x0000000040001754 rcampduuprate = 0x40001754 + 0x0000000040001758 rcClearCurAMPDUSched = 0x40001758 + 0x000000004000175c rcClearCurSched = 0x4000175c + 0x0000000040001760 rcClearCurStat = 0x40001760 + 0x0000000040001768 rcLowerSched = 0x40001768 + 0x000000004000176c rcSetTxAmpduLimit = 0x4000176c + 0x0000000040001770 rcTxUpdatePer = 0x40001770 + 0x0000000040001774 rcUpdateAckSnr = 0x40001774 + 0x0000000040001778 rcUpdateRate = 0x40001778 + 0x0000000040001780 rcUpdateTxDoneAmpdu2 = 0x40001780 + 0x0000000040001784 rcUpSched = 0x40001784 + 0x0000000040001788 rssi_margin = 0x40001788 + 0x000000004000178c rx11NRate2AMPDULimit = 0x4000178c + 0x0000000040001790 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40001790 + 0x0000000040001794 TRC_AMPDU_PER_UP_THRESHOLD = 0x40001794 + 0x0000000040001798 trc_calc_duration = 0x40001798 + 0x000000004000179c trc_isTxAmpduOperational = 0x4000179c + 0x00000000400017a0 trc_onAmpduOp = 0x400017a0 + 0x00000000400017a4 TRC_PER_IS_GOOD = 0x400017a4 + 0x00000000400017a8 trc_SetTxAmpduState = 0x400017a8 + 0x00000000400017ac trc_tid_isTxAmpduOperational = 0x400017ac + 0x00000000400017b0 trcAmpduSetState = 0x400017b0 + 0x00000000400017b8 wDev_AppendRxBlocks = 0x400017b8 + 0x00000000400017bc wDev_DiscardFrame = 0x400017bc + 0x00000000400017c0 wDev_GetNoiseFloor = 0x400017c0 + 0x00000000400017c4 wDev_IndicateAmpdu = 0x400017c4 + 0x00000000400017c8 wDev_IndicateFrame = 0x400017c8 + 0x00000000400017cc wdev_bank_store = 0x400017cc + 0x00000000400017d0 wdev_bank_load = 0x400017d0 + 0x00000000400017d4 wdev_mac_reg_load = 0x400017d4 + 0x00000000400017d8 wdev_mac_reg_store = 0x400017d8 + 0x00000000400017dc wdev_mac_special_reg_load = 0x400017dc + 0x00000000400017e0 wdev_mac_special_reg_store = 0x400017e0 + 0x00000000400017e4 wdev_mac_wakeup = 0x400017e4 + 0x00000000400017e8 wdev_mac_sleep = 0x400017e8 + 0x00000000400017ec hal_mac_is_dma_enable = 0x400017ec + 0x00000000400017f0 wDev_ProcessFiq = 0x400017f0 + 0x00000000400017f4 wDev_ProcessRxSucData = 0x400017f4 + 0x00000000400017f8 wdevProcessRxSucDataAll = 0x400017f8 + 0x00000000400017fc wdev_csi_len_align = 0x400017fc + 0x0000000040001800 ppDequeueTxDone_Locked = 0x40001800 + 0x0000000040001808 pm_tx_data_done_process = 0x40001808 + 0x000000004000180c config_is_cache_tx_buf_enabled = 0x4000180c + 0x0000000040001810 ppMapWaitTxq = 0x40001810 + 0x0000000040001814 ppProcessWaitingQueue = 0x40001814 + 0x0000000040001818 ppDisableQueue = 0x40001818 + 0x000000004000181c pm_allow_tx = 0x4000181c + 0x000000003ff1ee44 our_instances_ptr = 0x3ff1ee44 + 0x000000003fcdf968 pTxRx = 0x3fcdf968 + 0x000000003fcdf964 lmacConfMib_ptr = 0x3fcdf964 + 0x000000003fcdf960 our_wait_eb = 0x3fcdf960 + 0x000000003fcdf95c our_tx_eb = 0x3fcdf95c + 0x000000003fcdf958 pp_wdev_funcs = 0x3fcdf958 + 0x000000003fcdf954 g_osi_funcs_p = 0x3fcdf954 + 0x000000003fcdf950 wDevCtrl_ptr = 0x3fcdf950 + 0x000000003ff1ee40 g_wdev_last_desc_reset_ptr = 0x3ff1ee40 + 0x000000003fcdf94c wDevMacSleep_ptr = 0x3fcdf94c + 0x000000003fcdf948 g_lmac_cnt_ptr = 0x3fcdf948 + 0x000000003ff1ee3c our_controls_ptr = 0x3ff1ee3c + 0x000000003fcdf944 pp_sig_cnt_ptr = 0x3fcdf944 + 0x000000003fcdf940 g_eb_list_desc_ptr = 0x3fcdf940 + 0x000000003fcdf93c s_fragment_ptr = 0x3fcdf93c + 0x000000003fcdf938 if_ctrl_ptr = 0x3fcdf938 + 0x000000003fcdf934 g_intr_lock_mux = 0x3fcdf934 + 0x000000003fcdf930 g_wifi_global_lock = 0x3fcdf930 + 0x000000003fcdf92c s_wifi_queue = 0x3fcdf92c + 0x000000003fcdf928 pp_task_hdl = 0x3fcdf928 + 0x000000003fcdf924 s_pp_task_create_sem = 0x3fcdf924 + 0x000000003fcdf920 s_pp_task_del_sem = 0x3fcdf920 + 0x000000003fcdf91c g_wifi_menuconfig_ptr = 0x3fcdf91c + 0x000000003fcdf918 xphyQueue = 0x3fcdf918 + 0x000000003fcdf914 ap_no_lr_ptr = 0x3fcdf914 + 0x000000003fcdf910 rc11BSchedTbl_ptr = 0x3fcdf910 + 0x000000003fcdf90c rc11NSchedTbl_ptr = 0x3fcdf90c + 0x000000003fcdf908 rcLoRaSchedTbl_ptr = 0x3fcdf908 + 0x000000003fcdf904 BasicOFDMSched_ptr = 0x3fcdf904 + 0x000000003fcdf900 trc_ctl_ptr = 0x3fcdf900 + 0x000000003fcdf8fc g_pm_cnt_ptr = 0x3fcdf8fc + 0x000000003fcdf8f8 g_pm_ptr = 0x3fcdf8f8 + 0x000000003fcdf8f4 g_pm_cfg_ptr = 0x3fcdf8f4 + 0x000000003fcdf8f0 g_esp_mesh_quick_funcs_ptr = 0x3fcdf8f0 + 0x000000003fcdf8ec g_txop_queue_status_ptr = 0x3fcdf8ec + 0x000000003fcdf8e8 g_mac_sleep_en_ptr = 0x3fcdf8e8 + 0x000000003fcdf8e4 g_mesh_is_root_ptr = 0x3fcdf8e4 + 0x000000003fcdf8e0 g_mesh_topology_ptr = 0x3fcdf8e0 + 0x000000003fcdf8dc g_mesh_init_ps_type_ptr = 0x3fcdf8dc + 0x000000003fcdf8d8 g_mesh_is_started_ptr = 0x3fcdf8d8 + 0x000000003fcdf8d4 g_config_func = 0x3fcdf8d4 + 0x000000003fcdf8d0 g_net80211_tx_func = 0x3fcdf8d0 + 0x000000003fcdf8cc g_timer_func = 0x3fcdf8cc + 0x000000003fcdf8c8 s_michael_mic_failure_cb = 0x3fcdf8c8 + 0x000000003fcdf8c4 wifi_sta_rx_probe_req = 0x3fcdf8c4 + 0x000000003fcdf8c0 g_tx_done_cb_func = 0x3fcdf8c0 + 0x000000003fcdf874 g_per_conn_trc = 0x3fcdf874 + 0x000000003fcdf870 s_encap_amsdu_func = 0x3fcdf870 + 0x0000000040001820 esp_net80211_rom_version_get = 0x40001820 + 0x0000000040001824 ampdu_dispatch = 0x40001824 + 0x0000000040001828 ampdu_dispatch_all = 0x40001828 + 0x000000004000182c ampdu_dispatch_as_many_as_possible = 0x4000182c + 0x0000000040001830 ampdu_dispatch_movement = 0x40001830 + 0x0000000040001834 ampdu_dispatch_upto = 0x40001834 + 0x0000000040001838 chm_is_at_home_channel = 0x40001838 + 0x000000004000183c cnx_node_is_existing = 0x4000183c + 0x0000000040001840 cnx_node_search = 0x40001840 + 0x0000000040001844 ic_ebuf_recycle_rx = 0x40001844 + 0x0000000040001848 ic_ebuf_recycle_tx = 0x40001848 + 0x000000004000184c ic_reset_rx_ba = 0x4000184c + 0x0000000040001850 ieee80211_align_eb = 0x40001850 + 0x0000000040001854 ieee80211_ampdu_reorder = 0x40001854 + 0x0000000040001858 ieee80211_ampdu_start_age_timer = 0x40001858 + 0x000000004000185c ieee80211_encap_esfbuf = 0x4000185c + 0x0000000040001860 ieee80211_is_tx_allowed = 0x40001860 + 0x0000000040001864 ieee80211_output_pending_eb = 0x40001864 + 0x0000000040001868 ieee80211_output_process = 0x40001868 + 0x000000004000186c ieee80211_set_tx_desc = 0x4000186c + 0x0000000040001870 rom_sta_input = 0x40001870 + 0x0000000040001874 wifi_get_macaddr = 0x40001874 + 0x0000000040001878 wifi_rf_phy_disable = 0x40001878 + 0x000000004000187c wifi_rf_phy_enable = 0x4000187c + 0x0000000040001880 ic_ebuf_alloc = 0x40001880 + 0x0000000040001884 ieee80211_classify = 0x40001884 + 0x0000000040001888 ieee80211_copy_eb_header = 0x40001888 + 0x000000004000188c ieee80211_recycle_cache_eb = 0x4000188c + 0x0000000040001890 ieee80211_search_node = 0x40001890 + 0x0000000040001894 roundup2 = 0x40001894 + 0x0000000040001898 ieee80211_crypto_encap = 0x40001898 + 0x000000004000189c ieee80211_crypto_decap = 0x4000189c + 0x00000000400018a4 ieee80211_set_tx_pti = 0x400018a4 + 0x00000000400018a8 wifi_is_started = 0x400018a8 + 0x000000003fcdf86c net80211_funcs = 0x3fcdf86c + 0x000000003fcdf868 g_scan = 0x3fcdf868 + 0x000000003fcdf864 g_chm = 0x3fcdf864 + 0x000000003fcdf860 g_ic_ptr = 0x3fcdf860 + 0x000000003fcdf85c g_hmac_cnt_ptr = 0x3fcdf85c + 0x000000003fcdf858 g_tx_cacheq_ptr = 0x3fcdf858 + 0x000000003fcdf854 s_netstack_free = 0x3fcdf854 + 0x000000003fcdf850 mesh_rxcb = 0x3fcdf850 + 0x000000003fcdf84c sta_rxcb = 0x3fcdf84c + 0x00000000400018ac esp_coex_rom_version_get = 0x400018ac + 0x00000000400018b0 coex_bt_release = 0x400018b0 + 0x00000000400018b4 coex_bt_request = 0x400018b4 + 0x00000000400018b8 coex_core_ble_conn_dyn_prio_get = 0x400018b8 + 0x00000000400018bc coex_core_event_duration_get = 0x400018bc + 0x00000000400018c0 coex_core_pti_get = 0x400018c0 + 0x00000000400018c4 coex_core_release = 0x400018c4 + 0x00000000400018c8 coex_core_request = 0x400018c8 + 0x00000000400018cc coex_core_status_get = 0x400018cc + 0x00000000400018d0 coex_core_timer_idx_get = 0x400018d0 + 0x00000000400018d4 coex_event_duration_get = 0x400018d4 + 0x00000000400018d8 coex_hw_timer_disable = 0x400018d8 + 0x00000000400018dc coex_hw_timer_enable = 0x400018dc + 0x00000000400018e0 coex_hw_timer_set = 0x400018e0 + 0x00000000400018e4 coex_schm_interval_set = 0x400018e4 + 0x00000000400018e8 coex_schm_lock = 0x400018e8 + 0x00000000400018ec coex_schm_unlock = 0x400018ec + 0x00000000400018f0 coex_status_get = 0x400018f0 + 0x00000000400018f4 coex_wifi_release = 0x400018f4 + 0x00000000400018f8 esp_coex_ble_conn_dynamic_prio_get = 0x400018f8 + 0x000000003fcdf848 coex_env_ptr = 0x3fcdf848 + 0x000000003fcdf844 coex_pti_tab_ptr = 0x3fcdf844 + 0x000000003fcdf840 coex_schm_env_ptr = 0x3fcdf840 + 0x000000003fcdf83c coexist_funcs = 0x3fcdf83c + 0x000000003fcdf838 g_coa_funcs_p = 0x3fcdf838 + 0x000000003fcdf834 g_coex_param_ptr = 0x3fcdf834 + 0x00000000400018fc phy_get_romfuncs = 0x400018fc + 0x0000000040001900 rom_abs_temp = 0x40001900 + 0x0000000040001904 rom_bb_bss_cbw40_dig = 0x40001904 + 0x0000000040001908 rom_bb_wdg_test_en = 0x40001908 + 0x000000004000190c rom_bb_wdt_get_status = 0x4000190c + 0x0000000040001910 rom_bb_wdt_int_enable = 0x40001910 + 0x0000000040001914 rom_bb_wdt_rst_enable = 0x40001914 + 0x0000000040001918 rom_bb_wdt_timeout_clear = 0x40001918 + 0x000000004000191c rom_cbw2040_cfg = 0x4000191c + 0x0000000040001920 rom_check_noise_floor = 0x40001920 + 0x0000000040001924 rom_chip_i2c_readReg = 0x40001924 + 0x0000000040001928 rom_chip_i2c_writeReg = 0x40001928 + 0x000000004000192c rom_correct_rf_ana_gain = 0x4000192c + 0x0000000040001930 rom_dc_iq_est = 0x40001930 + 0x0000000040001934 rom_disable_agc = 0x40001934 + 0x0000000040001938 rom_en_pwdet = 0x40001938 + 0x000000004000193c rom_enable_agc = 0x4000193c + 0x0000000040001940 rom_get_bbgain_db = 0x40001940 + 0x0000000040001944 rom_get_data_sat = 0x40001944 + 0x0000000040001948 rom_get_i2c_read_mask = 0x40001948 + 0x000000004000194c rom_get_pwctrl_correct = 0x4000194c + 0x0000000040001950 rom_get_rf_gain_qdb = 0x40001950 + 0x0000000040001954 rom_i2c_readReg = 0x40001954 + 0x0000000040001958 rom_i2c_readReg_Mask = 0x40001958 + 0x000000004000195c rom_i2c_writeReg = 0x4000195c + 0x0000000040001960 rom_i2c_writeReg_Mask = 0x40001960 + 0x0000000040001968 rom_iq_est_disable = 0x40001968 + 0x000000004000196c rom_iq_est_enable = 0x4000196c + 0x0000000040001970 rom_linear_to_db = 0x40001970 + 0x0000000040001974 rom_loopback_mode_en = 0x40001974 + 0x0000000040001978 rom_mhz2ieee = 0x40001978 + 0x000000004000197c rom_noise_floor_auto_set = 0x4000197c + 0x0000000040001980 rom_pbus_debugmode = 0x40001980 + 0x0000000040001984 rom_pbus_force_mode = 0x40001984 + 0x0000000040001988 rom_pbus_force_test = 0x40001988 + 0x000000004000198c rom_pbus_rd = 0x4000198c + 0x0000000040001990 rom_pbus_rd_addr = 0x40001990 + 0x0000000040001994 rom_pbus_rd_shift = 0x40001994 + 0x0000000040001998 rom_pbus_set_dco = 0x40001998 + 0x000000004000199c rom_pbus_set_rxgain = 0x4000199c + 0x00000000400019a0 rom_pbus_workmode = 0x400019a0 + 0x00000000400019a4 rom_pbus_xpd_rx_off = 0x400019a4 + 0x00000000400019a8 rom_pbus_xpd_rx_on = 0x400019a8 + 0x00000000400019ac rom_pbus_xpd_tx_off = 0x400019ac + 0x00000000400019b4 rom_phy_byte_to_word = 0x400019b4 + 0x00000000400019b8 rom_phy_disable_cca = 0x400019b8 + 0x00000000400019bc rom_phy_enable_cca = 0x400019bc + 0x00000000400019c0 rom_phy_get_noisefloor = 0x400019c0 + 0x00000000400019c4 rom_phy_get_rx_freq = 0x400019c4 + 0x00000000400019c8 rom_phy_set_bbfreq_init = 0x400019c8 + 0x00000000400019cc rom_pow_usr = 0x400019cc + 0x00000000400019d0 rom_pwdet_sar2_init = 0x400019d0 + 0x00000000400019d4 rom_read_hw_noisefloor = 0x400019d4 + 0x00000000400019d8 rom_read_sar_dout = 0x400019d8 + 0x00000000400019dc rom_set_cal_rxdc = 0x400019dc + 0x00000000400019e0 rom_set_chan_cal_interp = 0x400019e0 + 0x00000000400019e4 rom_set_loopback_gain = 0x400019e4 + 0x00000000400019e8 rom_set_noise_floor = 0x400019e8 + 0x00000000400019ec rom_set_rxclk_en = 0x400019ec + 0x00000000400019f8 rom_set_txclk_en = 0x400019f8 + 0x00000000400019fc rom_spur_cal = 0x400019fc + 0x0000000040001a00 rom_spur_reg_write_one_tone = 0x40001a00 + 0x0000000040001a04 rom_target_power_add_backoff = 0x40001a04 + 0x0000000040001a08 rom_tx_pwctrl_bg_init = 0x40001a08 + 0x0000000040001a10 rom_wifi_11g_rate_chg = 0x40001a10 + 0x0000000040001a14 rom_write_gain_mem = 0x40001a14 + 0x0000000040001a18 chip726_phyrom_version = 0x40001a18 + 0x0000000040001a1c rom_disable_wifi_agc = 0x40001a1c + 0x0000000040001a20 rom_enable_wifi_agc = 0x40001a20 + 0x0000000040001a24 rom_set_tx_gain_table = 0x40001a24 + 0x0000000040001a28 rom_bt_index_to_bb = 0x40001a28 + 0x0000000040001a2c rom_bt_bb_to_index = 0x40001a2c + 0x0000000040001a30 rom_wr_bt_tx_atten = 0x40001a30 + 0x0000000040001a34 rom_wr_bt_tx_gain_mem = 0x40001a34 + 0x0000000040001a38 rom_spur_coef_cfg = 0x40001a38 + 0x0000000040001a3c rom_bb_bss_cbw40 = 0x40001a3c + 0x0000000040001a40 rom_set_cca = 0x40001a40 + 0x0000000040001a44 rom_tx_paon_set = 0x40001a44 + 0x0000000040001a48 rom_i2cmst_reg_init = 0x40001a48 + 0x0000000040001a4c rom_iq_corr_enable = 0x40001a4c + 0x0000000040001a50 rom_fe_reg_init = 0x40001a50 + 0x0000000040001a5c rom_mac_enable_bb = 0x40001a5c + 0x0000000040001a60 rom_bb_wdg_cfg = 0x40001a60 + 0x0000000040001a64 rom_force_txon = 0x40001a64 + 0x0000000040001a68 rom_fe_txrx_reset = 0x40001a68 + 0x0000000040001a6c rom_set_rx_comp = 0x40001a6c + 0x0000000040001a74 rom_write_chan_freq = 0x40001a74 + 0x0000000040001a7c rom_set_xpd_sar = 0x40001a7c + 0x0000000040001a80 rom_write_dac_gain2 = 0x40001a80 + 0x0000000040001a84 rom_rtc_sar2_init = 0x40001a84 + 0x0000000040001a88 rom_get_target_power_offset = 0x40001a88 + 0x0000000040001a90 rom_get_rate_fcc_index = 0x40001a90 + 0x0000000040001a94 rom_get_rate_target_power = 0x40001a94 + 0x0000000040001a98 rom_write_wifi_dig_gain = 0x40001a98 + 0x0000000040001a9c rom_bt_correct_rf_ana_gain = 0x40001a9c + 0x0000000040001aa0 rom_pkdet_vol_start = 0x40001aa0 + 0x0000000040001aa4 rom_read_sar2_code = 0x40001aa4 + 0x0000000040001aa8 rom_get_sar2_vol = 0x40001aa8 + 0x0000000040001aac rom_get_pll_vol = 0x40001aac + 0x0000000040001ab0 rom_get_phy_target_power = 0x40001ab0 + 0x0000000040001ab8 rom_phy_track_pll_cap = 0x40001ab8 + 0x0000000040001abc rom_phy_pwdet_always_en = 0x40001abc + 0x0000000040001ac0 rom_phy_pwdet_onetime_en = 0x40001ac0 + 0x0000000040001ac4 rom_get_i2c_mst0_mask = 0x40001ac4 + 0x0000000040001ac8 rom_get_i2c_hostid = 0x40001ac8 + 0x0000000040001acc rom_enter_critical_phy = 0x40001acc + 0x0000000040001ad0 rom_exit_critical_phy = 0x40001ad0 + 0x0000000040001ad4 rom_chip_i2c_readReg_org = 0x40001ad4 + 0x0000000040001ad8 rom_i2c_paral_set_mst0 = 0x40001ad8 + 0x0000000040001adc rom_i2c_paral_set_read = 0x40001adc + 0x0000000040001ae0 rom_i2c_paral_read = 0x40001ae0 + 0x0000000040001ae4 rom_i2c_paral_write = 0x40001ae4 + 0x0000000040001ae8 rom_i2c_paral_write_num = 0x40001ae8 + 0x0000000040001aec rom_i2c_paral_write_mask = 0x40001aec + 0x0000000040001af0 rom_bb_bss_cbw40_ana = 0x40001af0 + 0x0000000040001af4 rom_chan_to_freq = 0x40001af4 + 0x0000000040001afc rom_dac_rate_set = 0x40001afc + 0x0000000040001b08 rom_tsens_index_to_dac = 0x40001b08 + 0x0000000040001b0c rom_tsens_index_to_offset = 0x40001b0c + 0x0000000040001b14 rom_code_to_temp = 0x40001b14 + 0x0000000040001b18 rom_write_pll_cap_mem = 0x40001b18 + 0x0000000040001b1c rom_pll_correct_dcap = 0x40001b1c + 0x0000000040001b20 rom_phy_en_hw_set_freq = 0x40001b20 + 0x0000000040001b24 rom_phy_dis_hw_set_freq = 0x40001b24 + 0x0000000040000628 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) + 0x00000000400005c8 PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x00000000400005c4 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) + 0x00000000400005a0 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x00000000400005a4 PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x000000004000071c 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) + 0x000000004000072c PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + 0x0000000040000068 PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + 0x0000000040000084 PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + 0x0000000040000070 PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + 0x0000000040000614 PROVIDE (esp_rom_md5_init = MD5Init) + 0x0000000040000618 PROVIDE (esp_rom_md5_update = MD5Update) + 0x000000004000061c PROVIDE (esp_rom_md5_final = MD5Final) + 0x0000000040000040 PROVIDE (esp_rom_printf = ets_printf) + 0x0000000040000050 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x0000000040000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x0000000040000764 __absvdi2 = 0x40000764 + 0x0000000040000768 __absvsi2 = 0x40000768 + 0x000000004000076c __adddf3 = 0x4000076c + 0x0000000040000770 __addsf3 = 0x40000770 + 0x0000000040000774 __addvdi3 = 0x40000774 + 0x0000000040000778 __addvsi3 = 0x40000778 + 0x000000004000077c __ashldi3 = 0x4000077c + 0x0000000040000780 __ashrdi3 = 0x40000780 + 0x0000000040000784 __bswapdi2 = 0x40000784 + 0x0000000040000788 __bswapsi2 = 0x40000788 + 0x000000004000078c __clear_cache = 0x4000078c + 0x0000000040000790 __clrsbdi2 = 0x40000790 + 0x0000000040000794 __clrsbsi2 = 0x40000794 + 0x0000000040000798 __clzdi2 = 0x40000798 + 0x000000004000079c __clzsi2 = 0x4000079c + 0x00000000400007a0 __cmpdi2 = 0x400007a0 + 0x00000000400007a4 __ctzdi2 = 0x400007a4 + 0x00000000400007a8 __ctzsi2 = 0x400007a8 + 0x00000000400007ac __divdc3 = 0x400007ac + 0x00000000400007b0 __divdf3 = 0x400007b0 + 0x00000000400007b4 __divdi3 = 0x400007b4 + 0x00000000400007b8 __divsc3 = 0x400007b8 + 0x00000000400007bc __divsf3 = 0x400007bc + 0x00000000400007c0 __divsi3 = 0x400007c0 + 0x00000000400007c4 __eqdf2 = 0x400007c4 + 0x00000000400007c8 __eqsf2 = 0x400007c8 + 0x00000000400007cc __extendsfdf2 = 0x400007cc + 0x00000000400007d0 __ffsdi2 = 0x400007d0 + 0x00000000400007d4 __ffssi2 = 0x400007d4 + 0x00000000400007d8 __fixdfdi = 0x400007d8 + 0x00000000400007dc __fixdfsi = 0x400007dc + 0x00000000400007e0 __fixsfdi = 0x400007e0 + 0x00000000400007e4 __fixsfsi = 0x400007e4 + 0x00000000400007e8 __fixunsdfsi = 0x400007e8 + 0x00000000400007ec __fixunssfdi = 0x400007ec + 0x00000000400007f0 __fixunssfsi = 0x400007f0 + 0x00000000400007f4 __floatdidf = 0x400007f4 + 0x00000000400007f8 __floatdisf = 0x400007f8 + 0x00000000400007fc __floatsidf = 0x400007fc + 0x0000000040000800 __floatsisf = 0x40000800 + 0x0000000040000804 __floatundidf = 0x40000804 + 0x0000000040000808 __floatundisf = 0x40000808 + 0x000000004000080c __floatunsidf = 0x4000080c + 0x0000000040000810 __floatunsisf = 0x40000810 + 0x0000000040000814 __gcc_bcmp = 0x40000814 + 0x0000000040000818 __gedf2 = 0x40000818 + 0x000000004000081c __gesf2 = 0x4000081c + 0x0000000040000820 __gtdf2 = 0x40000820 + 0x0000000040000824 __gtsf2 = 0x40000824 + 0x0000000040000828 __ledf2 = 0x40000828 + 0x000000004000082c __lesf2 = 0x4000082c + 0x0000000040000830 __lshrdi3 = 0x40000830 + 0x0000000040000834 __ltdf2 = 0x40000834 + 0x0000000040000838 __ltsf2 = 0x40000838 + 0x000000004000083c __moddi3 = 0x4000083c + 0x0000000040000840 __modsi3 = 0x40000840 + 0x0000000040000844 __muldc3 = 0x40000844 + 0x0000000040000848 __muldf3 = 0x40000848 + 0x000000004000084c __muldi3 = 0x4000084c + 0x0000000040000850 __mulsc3 = 0x40000850 + 0x0000000040000854 __mulsf3 = 0x40000854 + 0x0000000040000858 __mulsi3 = 0x40000858 + 0x000000004000085c __mulvdi3 = 0x4000085c + 0x0000000040000860 __mulvsi3 = 0x40000860 + 0x0000000040000864 __nedf2 = 0x40000864 + 0x0000000040000868 __negdf2 = 0x40000868 + 0x000000004000086c __negdi2 = 0x4000086c + 0x0000000040000870 __negsf2 = 0x40000870 + 0x0000000040000874 __negvdi2 = 0x40000874 + 0x0000000040000878 __negvsi2 = 0x40000878 + 0x000000004000087c __nesf2 = 0x4000087c + 0x0000000040000880 __paritysi2 = 0x40000880 + 0x0000000040000884 __popcountdi2 = 0x40000884 + 0x0000000040000888 __popcountsi2 = 0x40000888 + 0x000000004000088c __powidf2 = 0x4000088c + 0x0000000040000890 __powisf2 = 0x40000890 + 0x0000000040000894 __subdf3 = 0x40000894 + 0x0000000040000898 __subsf3 = 0x40000898 + 0x000000004000089c __subvdi3 = 0x4000089c + 0x00000000400008a0 __subvsi3 = 0x400008a0 + 0x00000000400008a4 __truncdfsf2 = 0x400008a4 + 0x00000000400008a8 __ucmpdi2 = 0x400008a8 + 0x00000000400008ac __udivdi3 = 0x400008ac + 0x00000000400008b0 __udivmoddi4 = 0x400008b0 + 0x00000000400008b4 __udivsi3 = 0x400008b4 + 0x00000000400008b8 __udiv_w_sdiv = 0x400008b8 + 0x00000000400008bc __umoddi3 = 0x400008bc + 0x00000000400008c0 __umodsi3 = 0x400008c0 + 0x00000000400008c4 __unorddf2 = 0x400008c4 + 0x00000000400008c8 __unordsf2 = 0x400008c8 + 0x0000000040000350 esp_rom_newlib_init_common_mutexes = 0x40000350 + 0x0000000040000354 memset = 0x40000354 + 0x0000000040000358 memcpy = 0x40000358 + 0x000000004000035c memmove = 0x4000035c + 0x0000000040000360 memcmp = 0x40000360 + 0x0000000040000364 strcpy = 0x40000364 + 0x0000000040000368 strncpy = 0x40000368 + 0x000000004000036c strcmp = 0x4000036c + 0x0000000040000370 strncmp = 0x40000370 + 0x0000000040000374 strlen = 0x40000374 + 0x0000000040000378 strstr = 0x40000378 + 0x000000004000037c bzero = 0x4000037c + 0x0000000040000380 _isatty_r = 0x40000380 + 0x0000000040000384 sbrk = 0x40000384 + 0x0000000040000388 isalnum = 0x40000388 + 0x000000004000038c isalpha = 0x4000038c + 0x0000000040000390 isascii = 0x40000390 + 0x0000000040000394 isblank = 0x40000394 + 0x0000000040000398 iscntrl = 0x40000398 + 0x000000004000039c isdigit = 0x4000039c + 0x00000000400003a0 islower = 0x400003a0 + 0x00000000400003a4 isgraph = 0x400003a4 + 0x00000000400003a8 isprint = 0x400003a8 + 0x00000000400003ac ispunct = 0x400003ac + 0x00000000400003b0 isspace = 0x400003b0 + 0x00000000400003b4 isupper = 0x400003b4 + 0x00000000400003b8 toupper = 0x400003b8 + 0x00000000400003bc tolower = 0x400003bc + 0x00000000400003c0 toascii = 0x400003c0 + 0x00000000400003c4 memccpy = 0x400003c4 + 0x00000000400003c8 memchr = 0x400003c8 + 0x00000000400003cc memrchr = 0x400003cc + 0x00000000400003d0 strcasecmp = 0x400003d0 + 0x00000000400003d4 strcasestr = 0x400003d4 + 0x00000000400003d8 strcat = 0x400003d8 + 0x00000000400003dc strdup = 0x400003dc + 0x00000000400003e0 strchr = 0x400003e0 + 0x00000000400003e4 strcspn = 0x400003e4 + 0x00000000400003e8 strcoll = 0x400003e8 + 0x00000000400003ec strlcat = 0x400003ec + 0x00000000400003f0 strlcpy = 0x400003f0 + 0x00000000400003f4 strlwr = 0x400003f4 + 0x00000000400003f8 strncasecmp = 0x400003f8 + 0x00000000400003fc strncat = 0x400003fc + 0x0000000040000400 strndup = 0x40000400 + 0x0000000040000404 strnlen = 0x40000404 + 0x0000000040000408 strrchr = 0x40000408 + 0x000000004000040c strsep = 0x4000040c + 0x0000000040000410 strspn = 0x40000410 + 0x0000000040000414 strtok_r = 0x40000414 + 0x0000000040000418 strupr = 0x40000418 + 0x000000004000041c longjmp = 0x4000041c + 0x0000000040000420 setjmp = 0x40000420 + 0x0000000040000424 abs = 0x40000424 + 0x0000000040000428 div = 0x40000428 + 0x000000004000042c labs = 0x4000042c + 0x0000000040000430 ldiv = 0x40000430 + 0x0000000040000434 qsort = 0x40000434 + 0x0000000040000438 rand_r = 0x40000438 + 0x000000004000043c rand = 0x4000043c + 0x0000000040000440 srand = 0x40000440 + 0x0000000040000444 utoa = 0x40000444 + 0x0000000040000448 itoa = 0x40000448 + 0x000000004000044c atoi = 0x4000044c + 0x0000000040000450 atol = 0x40000450 + 0x0000000040000454 strtol = 0x40000454 + 0x0000000040000458 strtoul = 0x40000458 + [!provide] PROVIDE (fflush = 0x4000045c) + [!provide] PROVIDE (_fflush_r = 0x40000460) + [!provide] PROVIDE (_fwalk = 0x40000464) + [!provide] PROVIDE (_fwalk_reent = 0x40000468) + [!provide] PROVIDE (__smakebuf_r = 0x4000046c) + [!provide] PROVIDE (__swhatbuf_r = 0x40000470) + [!provide] PROVIDE (__swbuf_r = 0x40000474) + 0x0000000040000478 __swbuf = 0x40000478 + [!provide] PROVIDE (__swsetup_r = 0x4000047c) + 0x000000003fcdffe0 syscall_table_ptr = 0x3fcdffe0 + 0x000000003fcdffdc _global_impure_ptr = 0x3fcdffdc + 0x0000000040000010 _rom_chip_id = 0x40000010 + 0x0000000040000014 _rom_eco_version = 0x40000014 + 0x00000000400015c0 esf_buf_alloc_dynamic = 0x400015c0 + 0x00000000400015c4 esf_buf_recycle = 0x400015c4 + 0x00000000400016d8 ppMapTxQueue = 0x400016d8 + 0x0000000040001764 rcGetSched = 0x40001764 + 0x00000000400017b4 wDevCheckBlockError = 0x400017b4 + 0x0000000040001804 ppProcTxDone = 0x40001804 + 0x0000000040001870 sta_input = rom_sta_input + 0x0000000040001964 rom_index_to_txbbgain = 0x40001964 + 0x00000000400019b0 rom_pbus_xpd_tx_on = 0x400019b0 + 0x00000000400019f0 rom_set_tx_dig_gain = 0x400019f0 + 0x00000000400019f4 rom_set_txcap_reg = 0x400019f4 + 0x0000000040001a0c rom_txbbgain_to_index = 0x40001a0c + 0x0000000040001a54 rom_agc_reg_init = 0x40001a54 + 0x0000000040001a58 rom_bb_reg_init = 0x40001a58 + 0x0000000040001a70 rom_set_pbus_reg = 0x40001a70 + 0x0000000040001a78 rom_phy_xpd_rf = 0x40001a78 + 0x0000000040001a8c rom_write_txrate_power_offset = 0x40001a8c + 0x0000000040001ab4 rom_temp_to_power = 0x40001ab4 + 0x0000000040001af8 rom_open_i2c_xpd = 0x40001af8 + 0x0000000040001b00 rom_tsens_read_init = 0x40001b00 + 0x0000000040001b04 rom_tsens_code_read = 0x40001b04 + 0x0000000040001b10 rom_tsens_dac_cal = 0x40001b10 + 0x0000000040001b28 rom_pll_vol_cal = 0x40001b28 + 0x0000000040001b2c wdev_is_data_in_rxlist = 0x40001b2c + 0x0000000040001b30 ppProcTxCallback = 0x40001b30 + 0x0000000040001b34 ieee80211_gettid = 0x40001b34 + 0x0000000040001b38 r_lld_legacy_adv_dynamic_pti_get = 0x40001b38 + 0x0000000040001b3c r_lld_legacy_adv_dynamic_pti_process = 0x40001b3c + 0x0000000040001b40 r_lld_ext_adv_dynamic_pti_get = 0x40001b40 + 0x0000000040001b44 r_lld_ext_adv_dynamic_aux_pti_process = 0x40001b44 + 0x0000000040001b48 r_lld_ext_adv_dynamic_pti_process = 0x40001b48 + 0x0000000040001b4c r_lld_adv_ext_pkt_prepare_set = 0x40001b4c + 0x0000000040001b50 r_lld_adv_ext_chain_none_construct = 0x40001b50 + 0x0000000040001b54 r_lld_adv_ext_chain_connectable_construct = 0x40001b54 + 0x0000000040001b58 r_lld_adv_ext_chain_scannable_construct = 0x40001b58 + 0x0000000040001b5c r_lld_adv_pkt_rx_connect_post = 0x40001b5c + 0x0000000040001b60 r_lld_adv_start_init_evt_param = 0x40001b60 + 0x0000000040001b64 r_lld_adv_start_set_cs = 0x40001b64 + 0x0000000040001b68 r_lld_adv_start_update_filter_policy = 0x40001b68 + 0x0000000040001b6c r_lld_adv_start_schedule_asap = 0x40001b6c + 0x0000000040001b70 r_lld_con_tx_prog_new_packet_coex = 0x40001b70 + 0x0000000040001b74 r_lld_con_tx_prog_new_packet = 0x40001b74 + 0x0000000040001b78 r_lld_per_adv_dynamic_pti_get = 0x40001b78 + 0x0000000040001b7c r_lld_per_adv_evt_start_chm_upd = 0x40001b7c + 0x0000000040001b80 r_lld_ext_scan_dynamic_pti_get = 0x40001b80 + 0x0000000040001b84 r_lld_scan_try_sched = 0x40001b84 + 0x0000000040001b88 r_lld_sync_insert = 0x40001b88 + 0x0000000040001b8c r_sch_prog_ble_push = 0x40001b8c + 0x0000000040001b90 r_sch_prog_bt_push = 0x40001b90 + 0x0000000040001b94 r_lld_init_evt_end_type_set = 0x40001b94 + 0x0000000040001b98 r_lld_init_evt_end_type_get = 0x40001b98 + 0x0000000040001b9c r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40001b9c + 0x0000000040001ba0 r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x40001ba0 + 0x0000000040001ba4 r_lld_init_evt_end_type_check_state_set = 0x40001ba4 + 0x0000000040001ba8 r_lld_init_evt_end_type_check_state_get = 0x40001ba8 + 0x0000000040001bac rom_wrtie_pll_cap = 0x40001bac + 0x0000000040001bb0 rom_set_tx_gain_mem = 0x40001bb0 + 0x0000000040001bb4 rom_bt_tx_dig_gain = 0x40001bb4 + 0x0000000040001bb8 rom_bt_get_tx_gain = 0x40001bb8 + 0x0000000040001bbc rom_get_chan_target_power = 0x40001bbc + 0x0000000040001bc0 rom_get_tx_gain_value = 0x40001bc0 + 0x0000000040001bc4 rom_wifi_tx_dig_gain = 0x40001bc4 + 0x0000000040001bc8 rom_wifi_get_tx_gain = 0x40001bc8 + 0x0000000040001bcc rom_fe_i2c_reg_renew = 0x40001bcc + 0x0000000040001bd0 rom_wifi_agc_sat_gain = 0x40001bd0 + 0x0000000040001bd4 rom_i2c_master_reset = 0x40001bd4 + 0x0000000040001bd8 rom_bt_filter_reg = 0x40001bd8 + 0x0000000040001bdc rom_phy_bbpll_cal = 0x40001bdc + 0x0000000040001be0 rom_i2c_sar2_init_code = 0x40001be0 + 0x0000000040001be4 rom_phy_param_addr = 0x40001be4 + 0x0000000040001be8 rom_phy_reg_init = 0x40001be8 + 0x0000000040001bec rom_set_chan_reg = 0x40001bec + 0x0000000040001bf0 rom_phy_wakeup_init = 0x40001bf0 + 0x0000000040001bf4 rom_phy_i2c_init1 = 0x40001bf4 + 0x0000000040001bf8 rom_tsens_temp_read = 0x40001bf8 + 0x0000000040001bfc rom_bt_track_pll_cap = 0x40001bfc + 0x0000000040001c00 rom_wifi_track_pll_cap = 0x40001c00 + 0x0000000040001c04 rom_wifi_set_tx_gain = 0x40001c04 + 0x0000000040001c08 rom_txpwr_cal_track = 0x40001c08 + 0x0000000040001c0c rom_tx_pwctrl_background = 0x40001c0c + 0x0000000040001c10 rom_bt_set_tx_gain = 0x40001c10 + 0x0000000040001c14 rom_noise_check_loop = 0x40001c14 + 0x0000000040001c18 rom_phy_close_rf = 0x40001c18 + 0x0000000040001c1c rom_phy_xpd_tsens = 0x40001c1c + 0x0000000040001c20 rom_phy_freq_mem_backup = 0x40001c20 + 0x0000000040001c24 rom_phy_ant_init = 0x40001c24 + 0x0000000040001c28 rom_bt_track_tx_power = 0x40001c28 + 0x0000000040001c2c rom_wifi_track_tx_power = 0x40001c2c + 0x0000000040001c30 rom_phy_dig_reg_backup = 0x40001c30 + 0x0000000040001c34 chip726_phyrom_version_num = 0x40001c34 + 0x000000003fcdf830 phy_param_rom = 0x3fcdf830 + [!provide] PROVIDE (esp_flash_read_chip_id = 0x40001c38) + [!provide] PROVIDE (detect_spi_flash_chip = 0x40001c3c) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x40001c40) + 0x0000000060000000 PROVIDE (UART0 = 0x60000000) + 0x0000000060010000 PROVIDE (UART1 = 0x60010000) + 0x0000000060002000 PROVIDE (SPIMEM1 = 0x60002000) + [!provide] PROVIDE (SPIMEM0 = 0x60003000) + 0x0000000060004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SIGMADELTA = 0x60004f00) + 0x0000000060008000 PROVIDE (RTCCNTL = 0x60008000) + [!provide] PROVIDE (RTCIO = 0x60008400) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6002d000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (UHCI1 = 0x6000c000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016400) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + 0x000000006001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x0000000060020000 PROVIDE (TIMERG1 = 0x60020000) + 0x0000000060023000 PROVIDE (SYSTIMER = 0x60023000) + 0x0000000060024000 PROVIDE (GPSPI2 = 0x60024000) + [!provide] PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (TWAI = 0x6002b000) + [!provide] PROVIDE (GPSPI4 = 0x60037000) + [!provide] PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (USB_SERIAL_JTAG = 0x60043000) + 0x000000006003f000 PROVIDE (GDMA = 0x6003f000) +OUTPUT(hello-world.elf elf32-littleriscv) + +.debug_info 0x0000000000000000 0x140f58 + .debug_info 0x0000000000000000 0x13d0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_info 0x00000000000013d0 0x28fe esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x0000000000003cce 0x1185 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0000000000004e53 0x153a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x000000000000638d 0x6722 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x000000000000caaf 0x501d esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x0000000000011acc 0xc3d esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x0000000000012709 0xc1f esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x0000000000013328 0xb6a7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x000000000001e9cf 0x38a3 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x0000000000022272 0x485a esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x0000000000026acc 0xa9a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_info 0x0000000000027566 0x6b57 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x000000000002e0bd 0x4b32 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x0000000000032bef 0x16d1 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x00000000000342c0 0x204b esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_info 0x000000000003630b 0x5283 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_info 0x000000000003b58e 0xed3 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_info 0x000000000003c461 0x237d esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x000000000003e7de 0x38da esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x00000000000420b8 0x5034 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x00000000000470ec 0x4bf4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x000000000004bce0 0x1299 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x000000000004cf79 0xf29 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x000000000004dea2 0x228b esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x000000000005012d 0x12d3 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0000000000051400 0x1b49 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x0000000000052f49 0x61d4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_info 0x000000000005911d 0x115d esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x000000000005a27a 0xb61 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x000000000005addb 0x3992 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_info 0x000000000005e76d 0xd74 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x000000000005f4e1 0x2662 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x0000000000061b43 0x90ce esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x000000000006ac11 0xcc3 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x000000000006b8d4 0x1b15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x000000000006d3e9 0x1df9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x000000000006f1e2 0xe9b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x000000000007007d 0xd76 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x0000000000070df3 0x3401 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_info 0x00000000000741f4 0xc81 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_info 0x0000000000074e75 0x19ee esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x0000000000076863 0xb7a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x00000000000773dd 0x1d25 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x0000000000079102 0x1d46 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x000000000007ae48 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x000000000007ae6e 0xe4b esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x000000000007bcb9 0x1a9a esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x000000000007d753 0x3636 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x0000000000080d89 0x4afa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x0000000000085883 0x985 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_info 0x0000000000086208 0xbc2 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x0000000000086dca 0xaf4 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x00000000000878be 0xe01 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x00000000000886bf 0x17ba esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x0000000000089e79 0xc88 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x000000000008ab01 0xb03 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x000000000008b604 0x1279 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x000000000008c87d 0xcbd esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x000000000008d53a 0x1222 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x000000000008e75c 0xdff esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x000000000008f55b 0x1d5f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x00000000000912ba 0xce0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_info 0x0000000000091f9a 0x20e6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x0000000000094080 0x126a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000000952ea 0x1ba7 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0000000000096e91 0x1a8b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x000000000009891c 0xebc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000000997d8 0x89be esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x00000000000a2196 0x1089 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_info 0x00000000000a321f 0x9a8e esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x00000000000accad 0x4485 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_info 0x00000000000b1132 0x97e esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00000000000b1ab0 0x254b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_info 0x00000000000b3ffb 0x14d3 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000000b54ce 0x3351 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00000000000b881f 0x1310 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x00000000000b9b2f 0x1d9e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00000000000bb8cd 0x1ba7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00000000000bd474 0x65ab esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x00000000000c3a1f 0x6709 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00000000000ca128 0x4f64 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00000000000cf08c 0x1429 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00000000000d04b5 0x2aa9 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_info 0x00000000000d2f5e 0x14fb esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00000000000d4459 0x2aab esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x00000000000d6f04 0x1662 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x00000000000d8566 0x1647 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x00000000000d9bad 0x16f4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00000000000db2a1 0x1b28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x00000000000dcdc9 0x157d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_info 0x00000000000de346 0x4b81 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00000000000e2ec7 0xcff esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x00000000000e3bc6 0xe3c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x00000000000e4a02 0xe2d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x00000000000e582f 0x4a23 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x00000000000ea252 0x5372 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x00000000000ef5c4 0x3460 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x00000000000f2a24 0x47b5 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x00000000000f71d9 0x5b68 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x00000000000fcd41 0xcd9 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x00000000000fda1a 0xb12 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_info 0x00000000000fe52c 0x5125 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x0000000000103651 0x200c esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_info 0x000000000010565d 0x1fc0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x000000000010761d 0xb3a esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .debug_info 0x0000000000108157 0xab7 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x0000000000108c0e 0xa4c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_info 0x000000000010965a 0x3145 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000000000010c79f 0x3dde esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x000000000011057d 0x5a49 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_info 0x0000000000115fc6 0x33d9 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x000000000011939f 0x1252 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .debug_info 0x000000000011a5f1 0x12a3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .debug_info 0x000000000011b894 0x121c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .debug_info 0x000000000011cab0 0x127a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .debug_info 0x000000000011dd2a 0xa41 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .debug_info 0x000000000011e76b 0x43 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .debug_info 0x000000000011e7ae 0x982 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .debug_info 0x000000000011f130 0xe2e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_info 0x000000000011ff5e 0x123c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_info 0x000000000012119a 0xa6e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .debug_info 0x0000000000121c08 0xe0e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_info 0x0000000000122a16 0xce8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_info 0x00000000001236fe 0x11a0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_info 0x000000000012489e 0xcfd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_info 0x000000000012559b 0xefc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_info 0x0000000000126497 0xcb8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .debug_info 0x000000000012714f 0xf34 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_info 0x0000000000128083 0xca1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .debug_info 0x0000000000128d24 0xdc1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_info 0x0000000000129ae5 0xb1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_info 0x000000000012a604 0xd17 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_info 0x000000000012b31b 0xe1d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .debug_info 0x000000000012c138 0xa1a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .debug_info 0x000000000012cb52 0x26c0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_info 0x000000000012f212 0x2dc4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_info 0x0000000000131fd6 0xc7c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .debug_info 0x0000000000132c52 0xc4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_info 0x000000000013389e 0x196d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_info 0x000000000013520b 0xd72 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_info 0x0000000000135f7d 0x9fa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .debug_info 0x0000000000136977 0xffa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_info 0x0000000000137971 0x210e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_info 0x0000000000139a7f 0xa92 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_info 0x000000000013a511 0x24c3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_info 0x000000000013c9d4 0xea5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .debug_info 0x000000000013d879 0x111e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .debug_info 0x000000000013e997 0x1060 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .debug_info 0x000000000013f9f7 0x1026 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .debug_info 0x0000000000140a1d 0x53b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_abbrev 0x0000000000000000 0x1dcc2 + .debug_abbrev 0x0000000000000000 0x306 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_abbrev 0x0000000000000306 0x544 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x000000000000084a 0x338 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x0000000000000b82 0x2cf esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x0000000000000e51 0x3c4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x0000000000001215 0x41e esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x0000000000001633 0x23b esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x000000000000186e 0x2a3 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x0000000000001b11 0x3d0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x0000000000001ee1 0x27d esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x000000000000215e 0x314 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x0000000000002472 0x1f3 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_abbrev 0x0000000000002665 0x48e esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x0000000000002af3 0x3a4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x0000000000002e97 0x431 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x00000000000032c8 0x2a5 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_abbrev 0x000000000000356d 0x3ad esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x000000000000391a 0x2cf esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_abbrev 0x0000000000003be9 0x35f esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x0000000000003f48 0x2b9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x0000000000004201 0x50d esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x000000000000470e 0x568 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x0000000000004c76 0x442 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x00000000000050b8 0x2f5 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x00000000000053ad 0x48e esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x000000000000583b 0x308 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000000000005b43 0x443 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000000000005f86 0x4e7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_abbrev 0x000000000000646d 0x309 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000000000006776 0x198 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x000000000000690e 0x355 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_abbrev 0x0000000000006c63 0x2d1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x0000000000006f34 0x572 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x00000000000074a6 0x63f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0000000000007ae5 0x22c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000000000007d11 0x408 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x0000000000008119 0x3cc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x00000000000084e5 0x2fc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000000087e1 0x291 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000000000008a72 0x52b esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_abbrev 0x0000000000008f9d 0x2bf esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_abbrev 0x000000000000925c 0x430 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x000000000000968c 0x24f esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x00000000000098db 0x3cc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x0000000000009ca7 0x4c6 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x000000000000a16d 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x000000000000a181 0x286 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x000000000000a407 0x3d7 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x000000000000a7de 0x2fc esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x000000000000aada 0x41f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x000000000000aef9 0x186 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_abbrev 0x000000000000b07f 0x216 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x000000000000b295 0x23e esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x000000000000b4d3 0x273 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x000000000000b746 0x3af esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x000000000000baf5 0x290 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x000000000000bd85 0x243 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x000000000000bfc8 0x23d esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x000000000000c205 0x2ae esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x000000000000c4b3 0x379 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x000000000000c82c 0x282 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x000000000000caae 0x5d2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x000000000000d080 0x24f esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_abbrev 0x000000000000d2cf 0x1dc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x000000000000d4ab 0x240 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x000000000000d6eb 0x304 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x000000000000d9ef 0x3d5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x000000000000ddc4 0x2c2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x000000000000e086 0x59c esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x000000000000e622 0x2d5 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_abbrev 0x000000000000e8f7 0x5e0 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x000000000000eed7 0x5a2 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_abbrev 0x000000000000f479 0x1c2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000000000000f63b 0x306 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_abbrev 0x000000000000f941 0x2ed esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x000000000000fc2e 0x486 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00000000000100b4 0x339 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x00000000000103ed 0x3e5 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x00000000000107d2 0x3ea esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x0000000000010bbc 0x517 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x00000000000110d3 0x3fc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00000000000114cf 0x470 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x000000000001193f 0x2c7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x0000000000011c06 0x432 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_abbrev 0x0000000000012038 0x1e7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000000000001221f 0x445 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x0000000000012664 0x288 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x00000000000128ec 0x275 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0000000000012b61 0x2be esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x0000000000012e1f 0x301 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x0000000000013120 0x25c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x000000000001337c 0x382 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x00000000000136fe 0x252 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x0000000000013950 0x2b8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x0000000000013c08 0x298 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x0000000000013ea0 0x375 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x0000000000014215 0x44d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x0000000000014662 0x45c esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x0000000000014abe 0x371 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0000000000014e2f 0x4de esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x000000000001530d 0x2d4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00000000000155e1 0x23b esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_abbrev 0x000000000001581c 0x48e esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x0000000000015caa 0x3d3 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_abbrev 0x000000000001607d 0x231 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x00000000000162ae 0x1d6 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .debug_abbrev 0x0000000000016484 0x1de esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000000000016662 0x20a esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_abbrev 0x000000000001686c 0x313 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0000000000016b7f 0x33f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x0000000000016ebe 0x557 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_abbrev 0x0000000000017415 0x473 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x0000000000017888 0x2a4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .debug_abbrev 0x0000000000017b2c 0x2af /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .debug_abbrev 0x0000000000017ddb 0x28c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .debug_abbrev 0x0000000000018067 0x2a8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .debug_abbrev 0x000000000001830f 0x1fc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .debug_abbrev 0x000000000001850b 0x37 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .debug_abbrev 0x0000000000018542 0x1b8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .debug_abbrev 0x00000000000186fa 0x2f8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_abbrev 0x00000000000189f2 0x3bb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_abbrev 0x0000000000018dad 0x1e7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .debug_abbrev 0x0000000000018f94 0x2c1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_abbrev 0x0000000000019255 0x27c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_abbrev 0x00000000000194d1 0x2f0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_abbrev 0x00000000000197c1 0x281 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_abbrev 0x0000000000019a42 0x264 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0000000000019ca6 0x224 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .debug_abbrev 0x0000000000019eca 0x2e7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_abbrev 0x000000000001a1b1 0x275 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .debug_abbrev 0x000000000001a426 0x2a9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_abbrev 0x000000000001a6cf 0x255 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_abbrev 0x000000000001a924 0x274 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_abbrev 0x000000000001ab98 0x274 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .debug_abbrev 0x000000000001ae0c 0x1f1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x000000000001affd 0x455 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_abbrev 0x000000000001b452 0x467 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x000000000001b8b9 0x262 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .debug_abbrev 0x000000000001bb1b 0x23f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_abbrev 0x000000000001bd5a 0x30a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_abbrev 0x000000000001c064 0x2a4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_abbrev 0x000000000001c308 0x1de /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .debug_abbrev 0x000000000001c4e6 0x265 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_abbrev 0x000000000001c74b 0x450 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_abbrev 0x000000000001cb9b 0x24a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x000000000001cde5 0x3d1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_abbrev 0x000000000001d1b6 0x181 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .debug_abbrev 0x000000000001d337 0x2fa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .debug_abbrev 0x000000000001d631 0x279 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x000000000001d8aa 0x261 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .debug_abbrev 0x000000000001db0b 0x1b7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_loc 0x0000000000000000 0x4c74c + .debug_loc 0x0000000000000000 0x159 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_loc 0x0000000000000159 0x1431 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x000000000000158a 0x47f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0000000000001a09 0x48f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x0000000000001e98 0x91 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x0000000000001f29 0x282 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x00000000000021ab 0x11f esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x00000000000022ca 0xa9 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x0000000000002373 0x256 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x00000000000025c9 0x1d2 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x000000000000279b 0x547 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x0000000000002ce2 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_loc 0x0000000000002d45 0xbdf esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_loc 0x0000000000003924 0x1f9 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_loc 0x0000000000003b1d 0x236 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x0000000000003d53 0x4d esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x0000000000003da0 0x4336 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x00000000000080d6 0x127b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x0000000000009351 0x550 esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x00000000000098a1 0x6e esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x000000000000990f 0x131a esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x000000000000ac29 0x62b esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x000000000000b254 0xce9 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x000000000000bf3d 0x601b esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_loc 0x0000000000011f58 0x3ca esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x0000000000012322 0x137 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_loc 0x0000000000012459 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x00000000000124fb 0x156f esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0000000000013a6a 0xcb2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x000000000001471c 0x278 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x0000000000014994 0x882 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x0000000000015216 0x5f6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x000000000001580c 0x152 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x000000000001595e 0x34c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0000000000015caa 0x1cf1 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_loc 0x000000000001799b 0x198 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_loc 0x0000000000017b33 0xbf1 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x0000000000018724 0x29 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x000000000001874d 0x2b3 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x0000000000018a00 0x2a9 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0000000000018ca9 0x90 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x0000000000018d39 0x215 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x0000000000018f4e 0x2656 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x000000000001b5a4 0x3899 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x000000000001ee3d 0x5d esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x000000000001ee9a 0x67 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x000000000001ef01 0x31d esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x000000000001f21e 0x544 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x000000000001f762 0xa5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x000000000001f807 0x186 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x000000000001f98d 0x21 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_loc 0x000000000001f9ae 0x31e esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x000000000001fccc 0x6d4 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x00000000000203a0 0xd0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x0000000000020470 0x391 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0000000000020801 0x1f esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_loc 0x0000000000020820 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x000000000002083f 0x899 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000000210d8 0x109a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0000000000022172 0xfa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000000000002226c 0x1e45 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x00000000000240b1 0x36b esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_loc 0x000000000002441c 0x407b esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x0000000000028497 0x6d9 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_loc 0x0000000000028b70 0xe4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_loc 0x0000000000028c54 0x292 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x0000000000028ee6 0x57b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0000000000029461 0x101 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x0000000000029562 0xdc1 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x000000000002a323 0x1d7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x000000000002a4fa 0x1aa9 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x000000000002bfa3 0x454 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x000000000002c3f7 0x77d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x000000000002cb74 0x134 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x000000000002cca8 0x166e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_loc 0x000000000002e316 0x1430 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x000000000002f746 0x164 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x000000000002f8aa 0xc9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x000000000002f973 0x1d5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x000000000002fb48 0x762 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x00000000000302aa 0xf6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x00000000000303a0 0x5ac esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x000000000003094c 0x2f7 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0000000000030c43 0x17f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0000000000030dc2 0x3bc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x000000000003117e 0x50 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x00000000000311ce 0x339 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x0000000000031507 0xd2b esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x0000000000032232 0x326 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x0000000000032558 0x11c3 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x000000000003371b 0x197 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x00000000000338b2 0xe4 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_loc 0x0000000000033996 0xb87 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x000000000003451d 0xbb4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_loc 0x00000000000350d1 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_loc 0x00000000000350fd 0x74 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_loc 0x0000000000035171 0x13b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x00000000000352ac 0x3ae7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x0000000000038d93 0x1727 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_loc 0x000000000003a4ba 0x14d7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x000000000003b991 0x971 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .debug_loc 0x000000000003c302 0xa35 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .debug_loc 0x000000000003cd37 0xc1c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .debug_loc 0x000000000003d953 0x969 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .debug_loc 0x000000000003e2bc 0xe9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .debug_loc 0x000000000003e3a5 0x233 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_loc 0x000000000003e5d8 0x2ca /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_loc 0x000000000003e8a2 0xbc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .debug_loc 0x000000000003e95e 0x151 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_loc 0x000000000003eaaf 0x1a6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_loc 0x000000000003ec55 0x314 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_loc 0x000000000003ef69 0x16b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_loc 0x000000000003f0d4 0x4bd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_loc 0x000000000003f591 0x156 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .debug_loc 0x000000000003f6e7 0x225 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_loc 0x000000000003f90c 0x99 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .debug_loc 0x000000000003f9a5 0x120 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_loc 0x000000000003fac5 0xfa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_loc 0x000000000003fbbf 0xe4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_loc 0x000000000003fca3 0x323 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .debug_loc 0x000000000003ffc6 0x62 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .debug_loc 0x0000000000040028 0x2205 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_loc 0x000000000004222d 0x3ba8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_loc 0x0000000000045dd5 0x11d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .debug_loc 0x0000000000045ef2 0x7e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_loc 0x0000000000045f70 0x1b34 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_loc 0x0000000000047aa4 0xe0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_loc 0x0000000000047b84 0xe4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .debug_loc 0x0000000000047c68 0x63 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_loc 0x0000000000047ccb 0x1c73 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_loc 0x000000000004993e 0xa0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_loc 0x00000000000499de 0x242e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_loc 0x000000000004be0c 0x10d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .debug_loc 0x000000000004bf19 0xfd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .debug_loc 0x000000000004c016 0xd7 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .debug_loc 0x000000000004c0ed 0x65f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_aranges 0x0000000000000000 0x3a90 + .debug_aranges + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.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 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x00000000000002a8 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000000000002d0 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x0000000000000308 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x0000000000000330 0x60 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x0000000000000390 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x00000000000003e0 0x28 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x0000000000000408 0x20 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x0000000000000428 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_aranges + 0x0000000000000458 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x00000000000004c0 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x0000000000000518 0x68 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x0000000000000580 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_aranges + 0x00000000000005a0 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x0000000000000610 0x40 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_aranges + 0x0000000000000650 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x0000000000000690 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00000000000006c0 0x1b8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x0000000000000878 0x108 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x0000000000000980 0x50 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x00000000000009d0 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x0000000000000a18 0x108 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x0000000000000b20 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x0000000000000b60 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x0000000000000c30 0xd0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_aranges + 0x0000000000000d00 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x0000000000000d40 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x0000000000000d58 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_aranges + 0x0000000000000da0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x0000000000000df0 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x0000000000000ec0 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x0000000000000fd8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x0000000000001010 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x0000000000001128 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x0000000000001180 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000000011d0 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x0000000000001238 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_aranges + 0x0000000000001370 0x58 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_aranges + 0x00000000000013c8 0xb8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x0000000000001480 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00000000000014b0 0x80 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x0000000000001530 0xc0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00000000000015f0 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x0000000000001610 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x0000000000001638 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x0000000000001668 0x158 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x00000000000017c0 0x270 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x0000000000001a30 0x18 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_aranges + 0x0000000000001a48 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x0000000000001a88 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x0000000000001aa8 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x0000000000001b38 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x0000000000001c10 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x0000000000001c50 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x0000000000001c78 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x0000000000001ca0 0x48 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x0000000000001ce8 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x0000000000001d68 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x0000000000001db8 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x0000000000001e08 0x20 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_aranges + 0x0000000000001e28 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x0000000000001e40 0x40 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x0000000000001e80 0x88 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x0000000000001f08 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000001fd0 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000002008 0x1c0 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x00000000000021c8 0x60 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_aranges + 0x0000000000002228 0x238 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x0000000000002460 0xa8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_aranges + 0x0000000000002508 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x0000000000002528 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_aranges + 0x0000000000002568 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000000025d8 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000002640 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00000000000026b8 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x0000000000002738 0x70 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x00000000000027a8 0x128 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000000000028d0 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x0000000000002910 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00000000000029b0 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00000000000029f0 0xb8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_aranges + 0x0000000000002aa8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x0000000000002ac0 0x108 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x0000000000002bc8 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x0000000000002c00 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x0000000000002c30 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x0000000000002c68 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x0000000000002cc8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x0000000000002cf0 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x0000000000002d68 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x0000000000002d98 0x40 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x0000000000002dd8 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x0000000000002e40 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x0000000000002e70 0x70 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x0000000000002ee0 0xf8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x0000000000002fd8 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x0000000000003008 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00000000000030b0 0x48 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00000000000030f8 0x38 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_aranges + 0x0000000000003130 0x58 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x0000000000003188 0x88 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_aranges + 0x0000000000003210 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x0000000000003228 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .debug_aranges + 0x0000000000003248 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x0000000000003268 0x20 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_aranges + 0x0000000000003288 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x00000000000032b0 0x168 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x0000000000003418 0xb0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00000000000034c8 0xf8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00000000000035c0 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000000035e0 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .debug_aranges + 0x0000000000003600 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .debug_aranges + 0x0000000000003620 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .debug_aranges + 0x0000000000003640 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .debug_aranges + 0x0000000000003660 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .debug_aranges + 0x0000000000003678 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .debug_aranges + 0x0000000000003698 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_aranges + 0x00000000000036b8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_aranges + 0x00000000000036d8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .debug_aranges + 0x00000000000036f8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_aranges + 0x0000000000003718 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_aranges + 0x0000000000003738 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_aranges + 0x0000000000003758 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_aranges + 0x0000000000003778 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_aranges + 0x0000000000003798 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .debug_aranges + 0x00000000000037b8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_aranges + 0x00000000000037d8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .debug_aranges + 0x00000000000037f8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_aranges + 0x0000000000003818 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_aranges + 0x0000000000003838 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_aranges + 0x0000000000003858 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .debug_aranges + 0x0000000000003878 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x0000000000003898 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_aranges + 0x00000000000038b8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x00000000000038d8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .debug_aranges + 0x00000000000038f8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_aranges + 0x0000000000003918 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_aranges + 0x0000000000003938 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_aranges + 0x0000000000003958 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .debug_aranges + 0x0000000000003978 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_aranges + 0x0000000000003998 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_aranges + 0x00000000000039b8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x00000000000039d8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_aranges + 0x00000000000039f8 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .debug_aranges + 0x0000000000003a10 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .debug_aranges + 0x0000000000003a30 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x0000000000003a50 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .debug_aranges + 0x0000000000003a70 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_ranges 0x0000000000000000 0x6da0 + .debug_ranges 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_ranges 0x0000000000000050 0x1b8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x0000000000000208 0x90 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x0000000000000298 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x0000000000000340 0x18 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x0000000000000358 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x0000000000000380 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x0000000000000398 0x68 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x0000000000000400 0x58 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x0000000000000458 0x18 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x0000000000000470 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x0000000000000480 0x20 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_ranges 0x00000000000004a0 0x58 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x00000000000004f8 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x0000000000000540 0xb8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000000000005f8 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_ranges 0x0000000000000608 0x78 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_ranges 0x0000000000000680 0x30 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_ranges 0x00000000000006b0 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x00000000000006e0 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x0000000000000700 0x638 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x0000000000000d38 0x268 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x0000000000000fa0 0xb8 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x0000000000001058 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x0000000000001090 0x320 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00000000000013b0 0xe8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x0000000000001498 0xd8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000001570 0x1180 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_ranges 0x00000000000026f0 0x70 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x0000000000002760 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_ranges 0x0000000000002798 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x00000000000027d8 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x0000000000002928 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x0000000000002c38 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x0000000000002c60 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x0000000000002d80 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x0000000000002de0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x0000000000002e20 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x0000000000002e78 0x2c0 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_ranges 0x0000000000003138 0x60 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_ranges 0x0000000000003198 0x190 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x0000000000003328 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x0000000000003348 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x00000000000033b8 0xc8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x0000000000003480 0x48 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x00000000000034c8 0x50 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x0000000000003518 0x220 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x0000000000003738 0x590 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x0000000000003cc8 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x0000000000003cf8 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x0000000000003d20 0x80 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x0000000000003da0 0x110 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x0000000000003eb0 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x0000000000003ee0 0x60 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x0000000000003f40 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x0000000000003f58 0x38 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x0000000000003f90 0xa0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x0000000000004030 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x0000000000004070 0x88 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00000000000040f8 0x28 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_ranges 0x0000000000004120 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x0000000000004150 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000000041e0 0x100 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000000042e0 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000004380 0x240 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x00000000000045c0 0x100 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_ranges 0x00000000000046c0 0x340 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x0000000000004a00 0x188 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_ranges 0x0000000000004b88 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000004b98 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_ranges 0x0000000000004bc8 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x0000000000004c28 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000004c98 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x0000000000004d00 0x168 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x0000000000004e68 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x0000000000004ec8 0x1d0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000005098 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00000000000050c8 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x0000000000005170 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00000000000051a0 0x168 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_ranges 0x0000000000005308 0x198 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00000000000054a0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00000000000054c8 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x00000000000054e8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x0000000000005510 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x0000000000005578 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x0000000000005590 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x00000000000055f8 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x0000000000005618 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x0000000000005660 0xa0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x0000000000005700 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x0000000000005720 0xf0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x0000000000005810 0x190 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x00000000000059a0 0x20 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x00000000000059c0 0x1c0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x0000000000005b80 0x38 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x0000000000005bb8 0x28 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_ranges 0x0000000000005be0 0x150 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x0000000000005d30 0xb0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_ranges 0x0000000000005de0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .debug_ranges 0x0000000000005df0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x0000000000005e00 0x10 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_ranges 0x0000000000005e10 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x0000000000005e28 0x170 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x0000000000005f98 0x198 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_ranges 0x0000000000006130 0x190 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00000000000062c0 0x108 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .debug_ranges 0x00000000000063c8 0xb8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .debug_ranges 0x0000000000006480 0x100 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .debug_ranges 0x0000000000006580 0xd0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .debug_ranges 0x0000000000006650 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_ranges 0x0000000000006668 0x78 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_ranges 0x00000000000066e0 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_ranges 0x00000000000066f8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_ranges 0x0000000000006718 0x48 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_ranges 0x0000000000006760 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_ranges 0x00000000000067a0 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_ranges 0x00000000000067c0 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_ranges 0x00000000000067d8 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_ranges 0x00000000000067f8 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_ranges 0x0000000000006828 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_ranges 0x0000000000006848 0xa8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_ranges 0x00000000000068f0 0x170 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_ranges 0x0000000000006a60 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_ranges 0x0000000000006a80 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_ranges 0x0000000000006ac0 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_ranges 0x0000000000006ad8 0x60 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_ranges 0x0000000000006b38 0xf8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_ranges 0x0000000000006c30 0x18 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_ranges 0x0000000000006c48 0x80 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_ranges 0x0000000000006cc8 0xd8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_line 0x0000000000000000 0x8bcb2 + .debug_line 0x0000000000000000 0x66f esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_line 0x000000000000066f 0x22e4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x0000000000002953 0xba7 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x00000000000034fa 0x66f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x0000000000003b69 0xa62 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x00000000000045cb 0xa54 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x000000000000501f 0x477 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x0000000000005496 0x816 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x0000000000005cac 0xeba esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0000000000006b66 0x3d0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x0000000000006f36 0x6ad esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x00000000000075e3 0x491 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_line 0x0000000000007a74 0xceb esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x000000000000875f 0x822 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0000000000008f81 0xcf7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0000000000009c78 0x3ad esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_line 0x000000000000a025 0x1100 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_line 0x000000000000b125 0x670 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_line 0x000000000000b795 0x6a3 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x000000000000be38 0x47f esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000000000000c2b7 0x446e esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x0000000000010725 0x2790 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x0000000000012eb5 0xa47 esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00000000000138fc 0x889 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x0000000000014185 0x1a62 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x0000000000015be7 0xde6 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x00000000000169cd 0x115c esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x0000000000017b29 0x4b7e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_line 0x000000000001c6a7 0xaba esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x000000000001d161 0x32a esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x000000000001d48b 0x511 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_line 0x000000000001d99c 0x57d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x000000000001df19 0x2831 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x000000000002074a 0x295c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x00000000000230a6 0x516 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x00000000000235bc 0x11ad esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0000000000024769 0x10ab esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x0000000000025814 0x787 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x0000000000025f9b 0x930 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x00000000000268cb 0x29ac esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_line 0x0000000000029277 0x4e2 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_line 0x0000000000029759 0x176c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x000000000002aec5 0x5fa esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x000000000002b4bf 0xc18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x000000000002c0d7 0xcba esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x000000000002cd91 0x16b esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x000000000002cefc 0x638 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x000000000002d534 0x859 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x000000000002dd8d 0x2ed5 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x0000000000030c62 0x6664 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x00000000000372c6 0x292 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_line 0x0000000000037558 0x742 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x0000000000037c9a 0x453 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x00000000000380ed 0x52b esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x0000000000038618 0xc3b esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x0000000000039253 0x443 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x0000000000039696 0x627 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x0000000000039cbd 0x463 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x000000000003a120 0x5a9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x000000000003a6c9 0xe13 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x000000000003b4dc 0x609 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x000000000003bae5 0xc7b esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x000000000003c760 0x5be esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_line 0x000000000003cd1e 0x3e1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x000000000003d0ff 0x590 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x000000000003d68f 0xff0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x000000000003e67f 0x1377 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x000000000003f9f6 0x884 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x000000000004027a 0x3ce9 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x0000000000043f63 0xf6f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_line 0x0000000000044ed2 0x7e8b esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x000000000004cd5d 0x1440 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_line 0x000000000004e19d 0x30b esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000000000004e4a8 0x5e9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_line 0x000000000004ea91 0xabd esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x000000000004f54e 0xcf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000000000050244 0x715 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x0000000000050959 0x17a3 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x00000000000520fc 0x7e9 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x00000000000528e5 0x307b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x0000000000055960 0xd8e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x00000000000566ee 0xeb6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x00000000000575a4 0x52c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x0000000000057ad0 0x1bdb esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_line 0x00000000000596ab 0x44f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0000000000059afa 0x1fe4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x000000000005bade 0x529 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x000000000005c007 0x4fd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x000000000005c504 0x611 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x000000000005cb15 0xb67 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x000000000005d67c 0x489 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_line 0x000000000005db05 0xb63 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x000000000005e668 0x426 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x000000000005ea8e 0x686 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x000000000005f114 0xbd6 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x000000000005fcea 0x6ff esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x00000000000603e9 0x14ca esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x00000000000618b3 0x14ad esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x0000000000062d60 0x7f7 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x0000000000063557 0x1903 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0000000000064e5a 0x50a esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x0000000000065364 0x47f esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_line 0x00000000000657e3 0x1202 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x00000000000669e5 0xace esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_line 0x00000000000674b3 0x35e esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x0000000000067811 0x5a6 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .debug_line 0x0000000000067db7 0x448 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x00000000000681ff 0x3a1 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_line 0x00000000000685a0 0x934 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x0000000000068ed4 0x3552 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x000000000006c426 0x1b37 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_line 0x000000000006df5d 0x2936 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x0000000000070893 0xb06 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .debug_line 0x0000000000071399 0xb7c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .debug_line 0x0000000000071f15 0xa43 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .debug_line 0x0000000000072958 0xb09 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .debug_line 0x0000000000073461 0x28b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .debug_line 0x00000000000736ec 0x90 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .debug_line 0x000000000007377c 0x1c1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .debug_line 0x000000000007393d 0x820 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_line 0x000000000007415d 0x9bd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_line 0x0000000000074b1a 0x2c8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .debug_line 0x0000000000074de2 0x46e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_line 0x0000000000075250 0x290 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_line 0x00000000000754e0 0xba6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_line 0x0000000000076086 0x560 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_line 0x00000000000765e6 0xa5e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_line 0x0000000000077044 0x44d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .debug_line 0x0000000000077491 0x5a1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_line 0x0000000000077a32 0x3c5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .debug_line 0x0000000000077df7 0x4b4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_line 0x00000000000782ab 0x4fa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_line 0x00000000000787a5 0x5f2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_line 0x0000000000078d97 0x42e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .debug_line 0x00000000000791c5 0x254 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .debug_line 0x0000000000079419 0x327d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_line 0x000000000007c696 0x4a9f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_line 0x0000000000081135 0x338 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .debug_line 0x000000000008146d 0x4d6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_line 0x0000000000081943 0x24ed /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_line 0x0000000000083e30 0x4fe /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_line 0x000000000008432e 0x34f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .debug_line 0x000000000008467d 0x30e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_line 0x000000000008498b 0x28a1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_line 0x000000000008722c 0x46a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_line 0x0000000000087696 0x31e0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_line 0x000000000008a876 0x20b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .debug_line 0x000000000008aa81 0x3b1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .debug_line 0x000000000008ae32 0x3bc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .debug_line 0x000000000008b1ee 0x350 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .debug_line 0x000000000008b53e 0x774 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_str 0x0000000000000000 0x21bed + .debug_str 0x0000000000000000 0x953 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0xc1c (size before relaxing) + .debug_str 0x0000000000000953 0xb42 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x1268 (size before relaxing) + .debug_str 0x0000000000001495 0x1d4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x9f0 (size before relaxing) + .debug_str 0x0000000000001669 0x45c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0xaa7 (size before relaxing) + .debug_str 0x0000000000001ac5 0x3fdd esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4a2c (size before relaxing) + .debug_str 0x0000000000005aa2 0x84b esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x36ea (size before relaxing) + .debug_str 0x00000000000062ed 0x111 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0xd74 (size before relaxing) + .debug_str 0x00000000000063fe 0x1df esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x82d (size before relaxing) + .debug_str 0x00000000000065dd 0x1aad esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x5c39 (size before relaxing) + .debug_str 0x000000000000808a 0xd2 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x24a7 (size before relaxing) + .debug_str 0x000000000000815c 0xfc esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x2e7a (size before relaxing) + .debug_str 0x0000000000008258 0xe9 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + 0x72c (size before relaxing) + .debug_str 0x0000000000008341 0x393 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3b79 (size before relaxing) + .debug_str 0x00000000000086d4 0x209 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x311e (size before relaxing) + .debug_str 0x00000000000088dd 0x34a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0xca7 (size before relaxing) + .debug_str 0x0000000000008c27 0x84 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x1001 (size before relaxing) + .debug_str 0x0000000000008cab 0x3c4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x3017 (size before relaxing) + .debug_str 0x000000000000906f 0x1ad esp-idf/hal/libhal.a(cpu_hal.c.obj) + 0x7ef (size before relaxing) + .debug_str 0x000000000000921c 0x157 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x1108 (size before relaxing) + .debug_str 0x0000000000009373 0xc0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x24e1 (size before relaxing) + .debug_str 0x0000000000009433 0x98f esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1394 (size before relaxing) + .debug_str 0x0000000000009dc2 0x723 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1e74 (size before relaxing) + .debug_str 0x000000000000a4e5 0x28f esp-idf/log/liblog.a(log.c.obj) + 0x9da (size before relaxing) + .debug_str 0x000000000000a774 0x143 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x9a3 (size before relaxing) + .debug_str 0x000000000000a8b7 0x60a esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xeb0 (size before relaxing) + .debug_str 0x000000000000aec1 0x19d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xa70 (size before relaxing) + .debug_str 0x000000000000b05e 0x40a esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xbf6 (size before relaxing) + .debug_str 0x000000000000b468 0x50c esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0xcda (size before relaxing) + .debug_str 0x000000000000b974 0x4cb esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xcc2 (size before relaxing) + .debug_str 0x000000000000be3f 0xff esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x7c7 (size before relaxing) + .debug_str 0x000000000000bf3e 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x2561 (size before relaxing) + .debug_str 0x000000000000c00a 0x30d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xb7b (size before relaxing) + .debug_str 0x000000000000c317 0x75d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xfce (size before relaxing) + .debug_str 0x000000000000ca74 0x1045 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x596b (size before relaxing) + .debug_str 0x000000000000dab9 0x109 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x76d (size before relaxing) + .debug_str 0x000000000000dbc2 0x3ab esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x13d5 (size before relaxing) + .debug_str 0x000000000000df6d 0x1248 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x1c58 (size before relaxing) + .debug_str 0x000000000000f1b5 0xeb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x975 (size before relaxing) + .debug_str 0x000000000000f2a0 0x16b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8e9 (size before relaxing) + .debug_str 0x000000000000f40b 0x1066 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 0x2008 (size before relaxing) + .debug_str 0x0000000000010471 0x143 esp-idf/riscv/libriscv.a(interrupt.c.obj) + 0x7b1 (size before relaxing) + .debug_str 0x00000000000105b4 0x455 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xccb (size before relaxing) + .debug_str 0x0000000000010a09 0x96 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x811 (size before relaxing) + .debug_str 0x0000000000010a9f 0x943 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x1801 (size before relaxing) + .debug_str 0x00000000000113e2 0x398 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x120d (size before relaxing) + .debug_str 0x000000000001177a 0x77 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xde (size before relaxing) + .debug_str 0x00000000000117f1 0x115 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x95f (size before relaxing) + .debug_str 0x0000000000011906 0x185 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x165f (size before relaxing) + .debug_str 0x0000000000011a8b 0x8bd esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x116f (size before relaxing) + .debug_str 0x0000000000012348 0xdd0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ad2 (size before relaxing) + .debug_str 0x0000000000013118 0x79 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x64d (size before relaxing) + .debug_str 0x0000000000013191 0x9c esp-idf/freertos/libfreertos.a(list.c.obj) + 0x782 (size before relaxing) + .debug_str 0x000000000001322d 0x71 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x698 (size before relaxing) + .debug_str 0x000000000001329e 0x1f9 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x7d2 (size before relaxing) + .debug_str 0x0000000000013497 0x399 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xcc9 (size before relaxing) + .debug_str 0x0000000000013830 0x106 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x7fe (size before relaxing) + .debug_str 0x0000000000013936 0x80 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x68a (size before relaxing) + .debug_str 0x00000000000139b6 0x180 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0xace (size before relaxing) + .debug_str 0x0000000000013b36 0x10a esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x7b0 (size before relaxing) + .debug_str 0x0000000000013c40 0x22c esp-idf/newlib/libnewlib.a(time.c.obj) + 0xa0c (size before relaxing) + .debug_str 0x0000000000013e6c 0xa8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xbdc (size before relaxing) + .debug_str 0x0000000000013f14 0x9d6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x10ce (size before relaxing) + .debug_str 0x00000000000148ea 0xba esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x862 (size before relaxing) + .debug_str 0x00000000000149a4 0x6b esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x1ccb (size before relaxing) + .debug_str 0x0000000000014a0f 0x1db esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x16d5 (size before relaxing) + .debug_str 0x0000000000014bea 0x2a9 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x186f (size before relaxing) + .debug_str 0x0000000000014e93 0x42e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xdb8 (size before relaxing) + .debug_str 0x00000000000152c1 0x158 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xa84 (size before relaxing) + .debug_str 0x0000000000015419 0xacf esp-idf/driver/libdriver.a(gpio.c.obj) + 0x4827 (size before relaxing) + .debug_str 0x0000000000015ee8 0x204 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0xb2a (size before relaxing) + .debug_str 0x00000000000160ec 0x1266 esp-idf/driver/libdriver.a(uart.c.obj) + 0x391f (size before relaxing) + .debug_str 0x0000000000017352 0x62b esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + 0x27b4 (size before relaxing) + .debug_str 0x000000000001797d 0xaa esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x67c (size before relaxing) + .debug_str 0x0000000000017a27 0x1c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + 0x1a35 (size before relaxing) + .debug_str 0x0000000000017bed 0x2e8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0xdca (size before relaxing) + .debug_str 0x0000000000017ed5 0x2f1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2018 (size before relaxing) + .debug_str 0x00000000000181c6 0x379 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xed5 (size before relaxing) + .debug_str 0x000000000001853f 0x2f5 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1124 (size before relaxing) + .debug_str 0x0000000000018834 0x145 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x135e (size before relaxing) + .debug_str 0x0000000000018979 0x80e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3071 (size before relaxing) + .debug_str 0x0000000000019187 0x2ae esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x372f (size before relaxing) + .debug_str 0x0000000000019435 0x32a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x2bc1 (size before relaxing) + .debug_str 0x000000000001975f 0xbf esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xce8 (size before relaxing) + .debug_str 0x000000000001981e 0x901 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x1a86 (size before relaxing) + .debug_str 0x000000000001a11f 0x122 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xd4e (size before relaxing) + .debug_str 0x000000000001a241 0x7d4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1632 (size before relaxing) + .debug_str 0x000000000001aa15 0x106 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xdf4 (size before relaxing) + .debug_str 0x000000000001ab1b 0xc5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0xe1e (size before relaxing) + .debug_str 0x000000000001abe0 0xe3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xe60 (size before relaxing) + .debug_str 0x000000000001acc3 0x1aa esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xfa5 (size before relaxing) + .debug_str 0x000000000001ae6d 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0xd71 (size before relaxing) + .debug_str 0x000000000001af0f 0x1e5 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x28ad (size before relaxing) + .debug_str 0x000000000001b0f4 0xbe esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x820 (size before relaxing) + .debug_str 0x000000000001b1b2 0x105 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0xe2b (size before relaxing) + .debug_str 0x000000000001b2b7 0x208 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8d0 (size before relaxing) + .debug_str 0x000000000001b4bf 0x6d esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3486 (size before relaxing) + .debug_str 0x000000000001b52c 0x17e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x3739 (size before relaxing) + .debug_str 0x000000000001b6aa 0x44b esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x19f2 (size before relaxing) + .debug_str 0x000000000001baf5 0x177 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x274a (size before relaxing) + .debug_str 0x000000000001bc6c 0x760 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x2c40 (size before relaxing) + .debug_str 0x000000000001c3cc 0x2e6 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8ff (size before relaxing) + .debug_str 0x000000000001c6b2 0xef esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x7b8 (size before relaxing) + .debug_str 0x000000000001c7a1 0x3c6 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x28d8 (size before relaxing) + .debug_str 0x000000000001cb67 0x26c esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x13c6 (size before relaxing) + .debug_str 0x000000000001cdd3 0x65 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x14d6 (size before relaxing) + .debug_str 0x000000000001ce38 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + 0x667 (size before relaxing) + .debug_str 0x000000000001ceb2 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x792 (size before relaxing) + .debug_str 0x000000000001cf2e 0xb7 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + 0x6bd (size before relaxing) + .debug_str 0x000000000001cfe5 0x136e esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x24da (size before relaxing) + .debug_str 0x000000000001e353 0x74f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x119f (size before relaxing) + .debug_str 0x000000000001eaa2 0x4f1 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x28e2 (size before relaxing) + .debug_str 0x000000000001ef93 0x719 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1f7f (size before relaxing) + .debug_str 0x000000000001f6ac 0x341 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + 0x870 (size before relaxing) + .debug_str 0x000000000001f9ed 0x9 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + 0x870 (size before relaxing) + .debug_str 0x000000000001f9f6 0xa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + 0x871 (size before relaxing) + .debug_str 0x000000000001fa00 0xa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + 0x871 (size before relaxing) + .debug_str 0x000000000001fa0a 0x166 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + 0x64c (size before relaxing) + .debug_str 0x000000000001fb70 0x70 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + 0x160 (size before relaxing) + .debug_str 0x000000000001fbe0 0xf5 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + 0x61e (size before relaxing) + .debug_str 0x000000000001fcd5 0x23c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + 0x843 (size before relaxing) + .debug_str 0x000000000001ff11 0x15a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + 0x993 (size before relaxing) + .debug_str 0x000000000002006b 0x89 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + 0x652 (size before relaxing) + .debug_str 0x00000000000200f4 0x8f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + 0x876 (size before relaxing) + .debug_str 0x0000000000020183 0x84 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + 0x799 (size before relaxing) + .debug_str 0x0000000000020207 0xac /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + 0x9b6 (size before relaxing) + .debug_str 0x00000000000202b3 0x75 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + 0x805 (size before relaxing) + .debug_str 0x0000000000020328 0xf1 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + 0x820 (size before relaxing) + .debug_str 0x0000000000020419 0x7c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + 0x793 (size before relaxing) + .debug_str 0x0000000000020495 0x9e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + 0x8e8 (size before relaxing) + .debug_str 0x0000000000020533 0x84 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + 0x7a5 (size before relaxing) + .debug_str 0x00000000000205b7 0x74 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + 0x846 (size before relaxing) + .debug_str 0x000000000002062b 0x112 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + 0x642 (size before relaxing) + .debug_str 0x000000000002073d 0x80 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + 0x7d6 (size before relaxing) + .debug_str 0x00000000000207bd 0x9a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + 0x7c2 (size before relaxing) + .debug_str 0x0000000000020857 0x112 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + 0x68d (size before relaxing) + .debug_str 0x0000000000020969 0x53a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + 0xf6b (size before relaxing) + .debug_str 0x0000000000020ea3 0x98 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + 0x1021 (size before relaxing) + .debug_str 0x0000000000020f3b 0x7a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + 0x7ae (size before relaxing) + .debug_str 0x0000000000020fb5 0x6e /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + 0x7ac (size before relaxing) + .debug_str 0x0000000000021023 0x19c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + 0xafc (size before relaxing) + .debug_str 0x00000000000211bf 0x8b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + 0x84a (size before relaxing) + .debug_str 0x000000000002124a 0x72 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + 0x63a (size before relaxing) + .debug_str 0x00000000000212bc 0x162 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + 0x997 (size before relaxing) + .debug_str 0x000000000002141e 0xbe /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + 0xaa5 (size before relaxing) + .debug_str 0x00000000000214dc 0x12c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + 0x697 (size before relaxing) + .debug_str 0x0000000000021608 0x1a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + 0xe94 (size before relaxing) + .debug_str 0x0000000000021622 0xf6 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + 0x919 (size before relaxing) + .debug_str 0x0000000000021718 0xbe /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + 0x9fa (size before relaxing) + .debug_str 0x00000000000217d6 0x8a /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + 0x9a8 (size before relaxing) + .debug_str 0x0000000000021860 0x91 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + 0x9af (size before relaxing) + .debug_str 0x00000000000218f1 0x2fc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + 0x42a (size before relaxing) + +.comment 0x0000000000000000 0x25 + .comment 0x0000000000000000 0x25 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x26 (size before relaxing) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/main/libmain.a(hello_world_main.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.riscv.attributes + 0x0000000000000000 0x28 + .riscv.attributes + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .riscv.attributes + 0x0000000000000024 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .riscv.attributes + 0x000000000000004c 0x24 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .riscv.attributes + 0x0000000000000070 0x24 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .riscv.attributes + 0x0000000000000094 0x24 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .riscv.attributes + 0x00000000000000b8 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .riscv.attributes + 0x00000000000000e0 0x24 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .riscv.attributes + 0x0000000000000104 0x24 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .riscv.attributes + 0x0000000000000128 0x24 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .riscv.attributes + 0x000000000000014c 0x24 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .riscv.attributes + 0x0000000000000170 0x24 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .riscv.attributes + 0x0000000000000194 0x24 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .riscv.attributes + 0x00000000000001b8 0x24 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .riscv.attributes + 0x00000000000001dc 0x24 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .riscv.attributes + 0x0000000000000200 0x24 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .riscv.attributes + 0x0000000000000224 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .riscv.attributes + 0x0000000000000248 0x24 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .riscv.attributes + 0x000000000000026c 0x28 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .riscv.attributes + 0x0000000000000294 0x24 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .riscv.attributes + 0x00000000000002b8 0x24 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .riscv.attributes + 0x00000000000002dc 0x24 esp-idf/vfs/libvfs.a(vfs.c.obj) + .riscv.attributes + 0x0000000000000300 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .riscv.attributes + 0x0000000000000324 0x24 esp-idf/log/liblog.a(log.c.obj) + .riscv.attributes + 0x0000000000000348 0x28 esp-idf/log/liblog.a(log_freertos.c.obj) + .riscv.attributes + 0x0000000000000370 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .riscv.attributes + 0x0000000000000394 0x24 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .riscv.attributes + 0x00000000000003b8 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .riscv.attributes + 0x00000000000003dc 0x24 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .riscv.attributes + 0x0000000000000400 0x24 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .riscv.attributes + 0x0000000000000424 0x24 esp-idf/heap/libheap.a(memory_layout.c.obj) + .riscv.attributes + 0x0000000000000448 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .riscv.attributes + 0x000000000000046c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .riscv.attributes + 0x0000000000000490 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .riscv.attributes + 0x00000000000004b8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .riscv.attributes + 0x00000000000004e0 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .riscv.attributes + 0x0000000000000504 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .riscv.attributes + 0x0000000000000528 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .riscv.attributes + 0x000000000000054c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .riscv.attributes + 0x0000000000000570 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .riscv.attributes + 0x0000000000000594 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .riscv.attributes + 0x00000000000005b8 0x28 esp-idf/riscv/libriscv.a(interrupt.c.obj) + .riscv.attributes + 0x00000000000005e0 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .riscv.attributes + 0x0000000000000604 0x24 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .riscv.attributes + 0x0000000000000628 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .riscv.attributes + 0x000000000000064c 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .riscv.attributes + 0x0000000000000674 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .riscv.attributes + 0x0000000000000698 0x24 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .riscv.attributes + 0x00000000000006bc 0x24 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .riscv.attributes + 0x00000000000006e0 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .riscv.attributes + 0x0000000000000704 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .riscv.attributes + 0x0000000000000728 0x24 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .riscv.attributes + 0x000000000000074c 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + .riscv.attributes + 0x0000000000000770 0x24 esp-idf/newlib/libnewlib.a(abort.c.obj) + .riscv.attributes + 0x0000000000000794 0x24 esp-idf/newlib/libnewlib.a(heap.c.obj) + .riscv.attributes + 0x00000000000007b8 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + .riscv.attributes + 0x00000000000007dc 0x24 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .riscv.attributes + 0x0000000000000800 0x24 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .riscv.attributes + 0x0000000000000824 0x24 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .riscv.attributes + 0x0000000000000848 0x24 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .riscv.attributes + 0x000000000000086c 0x24 esp-idf/newlib/libnewlib.a(time.c.obj) + .riscv.attributes + 0x0000000000000890 0x24 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .riscv.attributes + 0x00000000000008b4 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .riscv.attributes + 0x00000000000008d8 0x24 esp-idf/main/libmain.a(hello_world_main.c.obj) + .riscv.attributes + 0x00000000000008fc 0x24 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .riscv.attributes + 0x0000000000000920 0x24 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .riscv.attributes + 0x0000000000000944 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .riscv.attributes + 0x0000000000000968 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .riscv.attributes + 0x000000000000098c 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .riscv.attributes + 0x00000000000009b0 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .riscv.attributes + 0x00000000000009d4 0x24 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .riscv.attributes + 0x00000000000009f8 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .riscv.attributes + 0x0000000000000a1c 0x28 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .riscv.attributes + 0x0000000000000a44 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .riscv.attributes + 0x0000000000000a68 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .riscv.attributes + 0x0000000000000a8c 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .riscv.attributes + 0x0000000000000ab0 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .riscv.attributes + 0x0000000000000ad4 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .riscv.attributes + 0x0000000000000af8 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .riscv.attributes + 0x0000000000000b1c 0x24 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .riscv.attributes + 0x0000000000000b40 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .riscv.attributes + 0x0000000000000b64 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .riscv.attributes + 0x0000000000000b88 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .riscv.attributes + 0x0000000000000bac 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .riscv.attributes + 0x0000000000000bd0 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .riscv.attributes + 0x0000000000000bf4 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .riscv.attributes + 0x0000000000000c18 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .riscv.attributes + 0x0000000000000c3c 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .riscv.attributes + 0x0000000000000c60 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .riscv.attributes + 0x0000000000000c84 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .riscv.attributes + 0x0000000000000ca8 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .riscv.attributes + 0x0000000000000ccc 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .riscv.attributes + 0x0000000000000cf0 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .riscv.attributes + 0x0000000000000d14 0x24 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .riscv.attributes + 0x0000000000000d38 0x24 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .riscv.attributes + 0x0000000000000d5c 0x24 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .riscv.attributes + 0x0000000000000d80 0x24 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .riscv.attributes + 0x0000000000000da4 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .riscv.attributes + 0x0000000000000dc8 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) + .riscv.attributes + 0x0000000000000dec 0x24 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .riscv.attributes + 0x0000000000000e10 0x24 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .riscv.attributes + 0x0000000000000e34 0x24 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .riscv.attributes + 0x0000000000000e58 0x24 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .riscv.attributes + 0x0000000000000e7c 0x24 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .riscv.attributes + 0x0000000000000ea0 0x24 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .riscv.attributes + 0x0000000000000ec4 0x24 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .riscv.attributes + 0x0000000000000ee8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .riscv.attributes + 0x0000000000000f10 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .riscv.attributes + 0x0000000000000f34 0x24 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .riscv.attributes + 0x0000000000000f58 0x24 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .riscv.attributes + 0x0000000000000f7c 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .riscv.attributes + 0x0000000000000fa0 0x24 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .riscv.attributes + 0x0000000000000fc4 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .riscv.attributes + 0x0000000000000fe8 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + .riscv.attributes + 0x0000000000001007 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + .riscv.attributes + 0x0000000000001026 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + .riscv.attributes + 0x0000000000001045 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + .riscv.attributes + 0x0000000000001064 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .riscv.attributes + 0x0000000000001083 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + .riscv.attributes + 0x00000000000010a2 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .riscv.attributes + 0x00000000000010c1 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .riscv.attributes + 0x00000000000010e0 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .riscv.attributes + 0x00000000000010ff 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .riscv.attributes + 0x000000000000111e 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .riscv.attributes + 0x000000000000113d 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .riscv.attributes + 0x000000000000115c 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .riscv.attributes + 0x000000000000117b 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .riscv.attributes + 0x000000000000119a 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .riscv.attributes + 0x00000000000011b9 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .riscv.attributes + 0x00000000000011d8 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .riscv.attributes + 0x00000000000011f7 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .riscv.attributes + 0x0000000000001216 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .riscv.attributes + 0x0000000000001235 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .riscv.attributes + 0x0000000000001254 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .riscv.attributes + 0x0000000000001273 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .riscv.attributes + 0x0000000000001292 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .riscv.attributes + 0x00000000000012b1 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .riscv.attributes + 0x00000000000012d0 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .riscv.attributes + 0x00000000000012ef 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .riscv.attributes + 0x000000000000130e 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .riscv.attributes + 0x000000000000132d 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .riscv.attributes + 0x000000000000134c 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .riscv.attributes + 0x000000000000136b 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .riscv.attributes + 0x000000000000138a 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .riscv.attributes + 0x00000000000013a9 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .riscv.attributes + 0x00000000000013c8 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .riscv.attributes + 0x00000000000013e7 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .riscv.attributes + 0x0000000000001406 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + .riscv.attributes + 0x0000000000001425 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .riscv.attributes + 0x0000000000001444 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .riscv.attributes + 0x0000000000001463 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .riscv.attributes + 0x0000000000001482 0x1f /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +.debug_frame 0x0000000000000000 0xc604 + .debug_frame 0x0000000000000000 0x4c esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_frame 0x000000000000004c 0x52c esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x0000000000000578 0x130 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x00000000000006a8 0x1e0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x0000000000000888 0x54 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000000000008dc 0x9c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x0000000000000978 0x3c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00000000000009b4 0xdc esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x0000000000000a90 0xe0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x0000000000000b70 0x48 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x0000000000000bb8 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x0000000000000be0 0x6c esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + .debug_frame 0x0000000000000c4c 0x12c esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x0000000000000d78 0x11c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x0000000000000e94 0x144 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x0000000000000fd8 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_frame 0x0000000000001004 0xcc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_frame 0x00000000000010d0 0x60 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_frame 0x0000000000001130 0x60 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x0000000000001190 0x50 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x00000000000011e0 0x8e0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x0000000000001ac0 0x418 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x0000000000001ed8 0x11c esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x0000000000001ff4 0xd0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x00000000000020c4 0x448 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x000000000000250c 0xf8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x0000000000002604 0x2c8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x00000000000028cc 0x32c esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_frame 0x0000000000002bf8 0xbc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x0000000000002cb4 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_frame 0x0000000000002d3c 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x0000000000002e18 0x368 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x0000000000003180 0x394 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x0000000000003514 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x00000000000035dc 0x364 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x0000000000003940 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x0000000000003a5c 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x0000000000003b30 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x0000000000003c5c 0x3d0 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + .debug_frame 0x000000000000402c 0xac esp-idf/riscv/libriscv.a(interrupt.c.obj) + .debug_frame 0x00000000000040d8 0x330 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x0000000000004408 0x64 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x000000000000446c 0x198 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x0000000000004604 0x1f4 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00000000000047f8 0x50 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x0000000000004848 0x80 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x00000000000048c8 0x5f8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x0000000000004ec0 0xa44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x0000000000005904 0x60 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x0000000000005964 0x2c esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x0000000000005990 0x180 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x0000000000005b10 0x30c esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x0000000000005e1c 0x6c esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x0000000000005e88 0x58 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x0000000000005ee0 0x48 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x0000000000005f28 0xd4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x0000000000005ffc 0x1f4 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00000000000061f0 0x100 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x00000000000062f0 0x100 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00000000000063f0 0x28 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_frame 0x0000000000006418 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000000064bc 0x1ec esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000000066a8 0x2f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000006998 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000006a3c 0x72c esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x0000000000007168 0xfc esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_frame 0x0000000000007264 0x9ec esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x0000000000007c50 0x1fc esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_frame 0x0000000000007e4c 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000000000007e78 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + .debug_frame 0x0000000000007f04 0x178 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x000000000000807c 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000000000081c4 0x14c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000000000008310 0x248 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x0000000000008558 0x128 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000008680 0x53c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000008bbc 0xec esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000008ca8 0x224 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000008ecc 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000008f58 0x318 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_frame 0x0000000000009270 0x450 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00000000000096c0 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x000000000000972c 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x000000000000977c 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00000000000097ec 0x154 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x0000000000009940 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x0000000000009970 0x168 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x0000000000009ad8 0x7c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x0000000000009b54 0xbc esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000000000009c10 0x170 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x0000000000009d80 0x70 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x0000000000009df0 0x184 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x0000000000009f74 0x208 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x000000000000a17c 0x4c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x000000000000a1c8 0x208 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x000000000000a3d0 0x80 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x000000000000a450 0x6c esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_frame 0x000000000000a4bc 0xf8 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x000000000000a5b4 0x130 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_frame 0x000000000000a6e4 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + .debug_frame 0x000000000000a704 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x000000000000a734 0x28 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + .debug_frame 0x000000000000a75c 0x4c esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x000000000000a7a8 0x660 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x000000000000ae08 0x2b8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_frame 0x000000000000b0c0 0x45c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x000000000000b51c 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + .debug_frame 0x000000000000b55c 0x2c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + .debug_frame 0x000000000000b588 0x84 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + .debug_frame 0x000000000000b60c 0x180 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + .debug_frame 0x000000000000b78c 0x4c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + .debug_frame 0x000000000000b7d8 0x60 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + .debug_frame 0x000000000000b838 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + .debug_frame 0x000000000000b878 0x70 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + .debug_frame 0x000000000000b8e8 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + .debug_frame 0x000000000000b93c 0x60 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + .debug_frame 0x000000000000b99c 0x88 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + .debug_frame 0x000000000000ba24 0x64 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + .debug_frame 0x000000000000ba88 0x54 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + .debug_frame 0x000000000000badc 0x58 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + .debug_frame 0x000000000000bb34 0x74 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + .debug_frame 0x000000000000bba8 0x50 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + .debug_frame 0x000000000000bbf8 0xa4 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + .debug_frame 0x000000000000bc9c 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + .debug_frame 0x000000000000bccc 0x128 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + .debug_frame 0x000000000000bdf4 0x104 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + .debug_frame 0x000000000000bef8 0x58 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + .debug_frame 0x000000000000bf50 0x3c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + .debug_frame 0x000000000000bf8c 0xa0 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + .debug_frame 0x000000000000c02c 0x58 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + .debug_frame 0x000000000000c084 0x20 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + .debug_frame 0x000000000000c0a4 0x40 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + .debug_frame 0x000000000000c0e4 0x2e8 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + .debug_frame 0x000000000000c3cc 0x38 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + .debug_frame 0x000000000000c404 0x104 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + .debug_frame 0x000000000000c508 0x68 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + .debug_frame 0x000000000000c570 0x38 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x000000000000c5a8 0x30 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + .debug_frame 0x000000000000c5d8 0x2c /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + +Cross Reference Table + +Symbol File +Cache_Dbus_MMU_Set esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Disable_ICache esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +Cache_Get_DROM_MMU_End esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Get_IROM_MMU_End esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Ibus_MMU_Set esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Invalidate_Addr esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Invalidate_ICache_All 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) +Cache_Resume_ICache 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/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Set_IDROM_MMU_Size esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Suspend_ICache 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/spi_flash/libspi_flash.a(cache_utils.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_BTLC_GPIO_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_DIS_CAN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_LEGACY_SPI_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_RTC_RAM_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_DEVICE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_FLASH_ECC_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_ECC_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_PAGE_SIZE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_TYPE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_MAC_FACTORY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PIN_POWER_SELECTION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_POWERGLITCH_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_POWER_GLITCH_DSENSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_RD_DIS_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_RD_DIS_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_RD_DIS_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_RD_DIS_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_RD_DIS_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_RD_DIS_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D_D0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_THRES_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_PRINT_CHANNEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_USB_DREFH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USB_DREFL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +ESP_EFUSE_WAFER_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_GROUP_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_GROUP_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_GROUP_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY0_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY1_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY2_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY3_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY4_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_KEY5_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +ESP_EFUSE_WR_DIS_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +GDMA esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/hal/libhal.a(gdma_hal.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +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) +GPSPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +RTCCNTL esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +SPIMEM1 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SYSTIMER esp-idf/hal/libhal.a(systimer_hal.c.obj) +SysTickIsrHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +TIMERG0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +UART0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_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) +_Balloc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +_Bfree /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +_PathLocale /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) +__action_table /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__adddf3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__any_on /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__ascii_mbtowc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) +__ascii_wctomb /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) +__assert /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) +__assert_func /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/hal/libhal.a(systimer_hal.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(partition.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_mmap.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_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/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +__atomic_compare_exchange_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +__atomic_compare_exchange_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_compare_exchange_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +__atomic_compare_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_exchange_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_exchange_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_exchange_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_add_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_add_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_add_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_and_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_and_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_and_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +__atomic_fetch_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_or_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_or_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_or_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) +__atomic_fetch_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_sub_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_sub_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_sub_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_xor_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_xor_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_xor_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_fetch_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_load_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__atomic_store_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__b2d /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__bswapdi2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__chclass /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__clz_tab /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clz.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) +__clzsi2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_clzsi2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(adddf3.o) + esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +__copybits /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.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) +__cxx_eh_arena_size_get esp-idf/esp_system/libesp_system.a(startup.c.obj) +__d2b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__default_global_locale /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) +__divdf3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(divdf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__divdi3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__env_lock /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) +__env_unlock /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) +__eqdf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__errno /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +__ffssi2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_ffssi2.o) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +__fixdfsi /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(fixdfsi.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__floatsidf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatsidf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__floatunsidf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(floatunsidf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__fp_lock_all /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__fp_unlock_all /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__gedf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-errno.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + esp-idf/main/libmain.a(hello_world_main.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/vfs/libvfs.a(vfs.c.obj) +__gettzinfo /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gettzinfo.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) +__global_locale_ptr /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) +__global_pointer$ esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +__gtdf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(gedf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__hi0bits /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__i2b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_priority_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_priority_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__itoa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) +__ledf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__lo0bits /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__locale_mb_cur_max /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +__localeconv_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) +__lshift /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__ltdf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(ledf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__mcmp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__mdiff /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__moddi3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-month_lengths.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) +__mprec_bigtens /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__mprec_tens /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__mprec_tinytens /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__muldf3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(muldf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__multadd /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__multiply /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__nedf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(eqdf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__popcountsi2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) +__ratio /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__s2b /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__sccl /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sccl.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +__sclose /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__seofread /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) +__sf_fake_stderr /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) +__sf_fake_stdin /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) +__sf_fake_stdout /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) +__sflags /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-flags.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) +__sflush_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) +__sfmoreglue /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__sfp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) +__sfp_lock_acquire /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) +__sfp_lock_release /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) +__sfvwrite_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) +__sinit /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) +__sinit_lock_acquire /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__sinit_lock_release /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__smakebuf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) +__sprint_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) +__sread /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__srefill_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) +__sseek /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__ssprint_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__ssrefill_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +__ssvfiscanf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) +__state_table /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__subdf3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(subdf3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__submore /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +__swhatbuf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) +__swrite /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +__swsetup_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) +__sync_bool_compare_and_swap_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_add_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_add_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_add_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_and_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_and_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_and_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_or_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_or_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_or_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_sub_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_sub_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_sub_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_xor_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_xor_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_xor_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_fetch_and_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_val_compare_and_swap_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_val_compare_and_swap_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_val_compare_and_swap_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__sync_val_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) +__trunctfdf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(trunctfdf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__tz_lock /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) +__tz_unlock /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) +__tzcalc_limits /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_udivdi3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 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_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__ulp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +__umoddi3 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(_umoddi3.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/rv32im/ilp32\libgcc.a(unorddf2.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +__utoa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) +_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cleanup /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +_cleanup_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ctype_ /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ctype_.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_daylight /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) +_dtoa_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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_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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_fflush_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) +_findenv_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) +_fiprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) +_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_fopen_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) +_fprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) +_fputs_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_fseek_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) +_fseeko_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ftello_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) +_fwalk /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) +_fwalk_reent /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) +_fwrite_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) +_getenv_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-impure.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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) +_global_interrupt_handler esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_interrupt_handler esp-idf/riscv/libriscv.a(vectors.S.obj) + esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_text_end esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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(newlib_init.c.obj) +_localeconv_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/vfs/libvfs.a(vfs.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) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.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/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/vfs/libvfs.a(vfs.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) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_mbtowc_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbtowc_r.o) +_mprec_log10 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_printf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) +_puts_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_force_slow_end 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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) +_sfread_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_siscanf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) +_snprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_strerror_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) +_strtol_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_strtoll_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_strtoul_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_strtoull_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_sungetc_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +_svfiprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) +_svfprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) +_tzname /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) +_tzset_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) +_tzset_unlocked /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) +_tzset_unlocked_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset.o) +_ungetc_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-u_strerr.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) +_vector_table esp-idf/riscv/libriscv.a(vectors.S.obj) + esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) +_vfprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) +_vprintf_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) +_wctomb_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-wctomb_r.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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) +abort esp-idf/newlib/libnewlib.a(abort.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) + esp-idf/hal/libhal.a(sha_hal.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/riscv/libriscv.a(instruction_decode.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(gpio.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/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +access esp-idf/vfs/libvfs.a(vfs.c.obj) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +app_main esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_get_chip_revision esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32c3.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.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_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_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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_loader.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_esp32c3.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_esp32c3.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.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_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +brownout_hal_intr_clear esp-idf/hal/libhal.a(brownout_hal.c.obj) +brownout_hal_intr_enable esp-idf/hal/libhal.a(brownout_hal.c.obj) +bzero /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +cleanup_glue /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-reent.o) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) +cpu_hal_clear_breakpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) +cpu_hal_clear_watchpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +cpu_hal_set_breakpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +cpu_hal_set_vecbase esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cpu_hal_set_watchpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +environ /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-environ.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_apb_backup_dma_lock_init esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_app_desc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) +esp_brownout_disable esp-idf/esp_system/libesp_system.a(brownout.c.obj) +esp_brownout_init esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_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/main/libmain.a(hello_world_main.c.obj) +esp_clk_apb_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.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_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_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_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_system/libesp_system.a(clk.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util_esp32c3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_cpu_in_ocd_debug_mode esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_crypto_ds_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_ds_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_hmac_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_hmac_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_mpi_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_mpi_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_sha_aes_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_crypto_sha_aes_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_crypto_shared_gdma_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +esp_crypto_shared_gdma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) +esp_deep_sleep 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_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_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_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_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.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_esp32xx.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_enable_rom_secure_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_chip_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.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_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.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_esp32xx.c.obj) +esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.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_esp32xx.c.obj) +esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.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_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_enable_cache_wrap esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_enable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_flash_chip_boya esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.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_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/spi_flash/libspi_flash.a(partition.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_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-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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_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/spi_flash/libspi_flash.a(partition.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_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/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/main/libmain.a(hello_world_main.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(port_common.c.obj) +esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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.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/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) +esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.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/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +esp_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_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/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/spi_flash/libspi_flash.a(cache_utils.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_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/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_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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.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_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_writev esp-idf/log/liblog.a(log.c.obj) +esp_memprot_dram_get_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_dram_set_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_active_intr_memtype esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_get_default_main_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_dram_status_reg_1 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_dram_status_reg_2 esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_iram_status_reg esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_monitor_enable_reg esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_split_line_lock esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_violate_addr esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_get_violate_byte_en esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_get_violate_intr_on esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_get_violate_loadstore esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_get_violate_world esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_get_violate_wr esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_intr_get_cpuid esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_iram_get_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_iram_set_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_is_intr_ena_any esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_is_locked_any esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_memprot_mem_type_to_str esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_memprot_monitor_clear_intr esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_pms_to_str esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_intr_matrix esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_prot esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_memprot_set_prot_int esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_split_line esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_set_split_line_lock esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) +esp_memprot_split_line_to_str esp-idf/esp_hw_support/libesp_hw_support.a(memprot.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_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_description esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_get_app_elf_sha256 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_init_app_elf_sha256 esp-idf/app_update/libapp_update.a(esp_app_desc.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_partition_check_identity esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_deregister_external esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_erase_range esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find_first esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_sha256 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_iterator_release esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/spi_flash/libspi_flash.a(partition.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_partition_mmap esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read_raw esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_register_external esp-idf/spi_flash/libspi_flash.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/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write_raw esp-idf/spi_flash/libspi_flash.a(partition.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_pm_configure esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_dump_locks esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_get_configuration esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_get_cpu_freq esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_get_mode esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_idle_hook esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_init esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_isr_hook esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_switch_mode esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_waiti esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_pm_lock_acquire esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_create esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_delete esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_lock_release esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_register_inform_out_light_sleep_overhead_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.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_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_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_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/main/libmain.a(hello_world_main.c.obj) +esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +esp_rom_delay_us esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/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_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/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/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_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) +esp_rom_printf esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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/spi_flash/libspi_flash.a(cache_utils.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_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/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(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_spiflash_config_clk esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) +esp_rom_spiflash_config_readmode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_uart_rx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_set_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_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(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_time_from_rtc esp-idf/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_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_write_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_sleep_cpu_pd_low_init 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_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_modes.c.obj) + esp-idf/esp_system/libesp_system.a(startup.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_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_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_gpio_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_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_startup_start_app esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_startup_start_app_common esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_sync_counters_rtc_and_frc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system.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-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +esp_task_wdt_isr_user_handler 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_status 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_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_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_timer_is_active esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_vApplicationIdleHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vApplicationTickHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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_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-idf/esp_system/libesp_system.a(startup.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_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_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_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_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_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esprv_intc_get_interrupt_unmask esp-idf/riscv/libriscv.a(interrupt.c.obj) +esprv_intc_int_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esprv_intc_int_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esprv_intc_int_set_priority esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 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) +esprv_intc_int_set_threshold esp-idf/freertos/libfreertos.a(port.c.obj) +esprv_intc_int_set_type esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 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) +ets_apb_backup_init_lock_func esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) +ets_efuse_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +ets_efuse_program esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +ets_efuse_read esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +ets_efuse_rs_calculate esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +ets_efuse_set_timing esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +ets_get_cpu_frequency esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_rom_layout_p esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +ets_update_cpu_frequency esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +fclose /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +fflush /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-refill.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) +fiprintf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-assert.o) +flash_rom_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +fopen /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +fprintf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fputs /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +frexp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) +fseek /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseek.o) +fseeko /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) +ftello /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) +fwrite /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) +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_spiram_ok esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_startup_fn esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_startup_time esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +gdma_append esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_apply_strategy esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_connect esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_del_channel esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_disconnect esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_get_channel_id esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_hal_init esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_new_channel esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_periph_signals esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_register_rx_event_callbacks esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_register_tx_event_callbacks esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_reset esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_set_transfer_ability esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_start esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_stop esp-idf/driver/libdriver.a(gdma.c.obj) +get_rtc_dbias_by_efuse esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +gettimeofday /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +gmtime_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-gmtime_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.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_deep_sleep_wakeup_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_wakeup_enable esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_force_hold_all esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_force_unhold_all esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_level esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_pulldown_en esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_pullup_dis esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_pullup_en esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_modes.c.obj) +gpio_sleep_sel_en esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +gpio_sleep_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_modes.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) +heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/driver/libdriver.a(uart.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.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(port_common.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(spi_common.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_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) +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) +interrupt_controller_hal_desc_flags esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +interrupt_controller_hal_desc_level esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +interrupt_controller_hal_desc_type esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) +intr_handler_get esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +intr_handler_get_arg esp-idf/riscv/libriscv.a(interrupt.c.obj) +intr_handler_set esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +intr_matrix_route esp-idf/riscv/libriscv.a(interrupt.c.obj) +intr_matrix_set esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(memprot.c.obj) + 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-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +iswspace /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) +iswspace_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace_l.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-iswspace.o) +itoa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) +localeconv /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-localeconv.o) +localtime_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.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) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbrtowc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mbrtowc.o) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memchr.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) +memcmp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +memcpy /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memcpy.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_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/vfs/libvfs.a(vfs.c.obj) +memmove /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memmove-stub.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fvwrite.o) +memset /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-memset.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-bzero.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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/app_update/libapp_update.a(esp_ota_ops.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(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/vfs/libvfs.a(vfs_uart.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) +mkdir esp-idf/vfs/libvfs.a(vfs.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) +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) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) +panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +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) + esp-idf/esp_system/libesp_system.a(panic_arch.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(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(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_reasons 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) +panic_soc_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +periph_inform_out_light_sleep_overhead esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +periph_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +periph_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +periph_module_reset esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port_common.c.obj) +pread esp-idf/vfs/libvfs.a(vfs.c.obj) +printf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-printf.o) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.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_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) + esp-idf/pthread/libpthread.a(pthread.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_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) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) +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_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fflush.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +puts /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +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) +qsort /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +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) +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/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiscanf.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +riscv_decode_offset_from_jal_instruction esp-idf/riscv/libriscv.a(instruction_decode.c.obj) + esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) +riscv_excp_names esp-idf/riscv/libriscv.a(interrupt.c.obj) +riscv_global_interrupts_disable esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +riscv_global_interrupts_enable esp-idf/riscv/libriscv.a(interrupt.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_i2c_readReg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_i2c_readReg_Mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_i2c_writeReg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_i2c_writeReg_Mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) +rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable_internal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_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_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_bbpll_configure esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_internal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_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) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_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(esp_system.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_freq_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_cntl_hal_dma_link_init esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_cntl_hal_enable_cpu_retention esp-idf/hal/libhal.a(rtc_cntl_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_deep_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_deep_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_light_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_pu esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_sleep_set_wakeup_time esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(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(rtc_init.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) +rtos_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +rtos_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key_esp32xx.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +select esp-idf/vfs/libvfs.a(vfs.c.obj) +setlocale /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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) +sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_hash_dma esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_write_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +siscanf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) +snprintf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-snprintf.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.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(spi_flash_os_func_app.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(spi_flash_os_func_app.c.obj) +spi_bus_lock_register_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) +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(spi_flash_os_func_app.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_common_set_dummy_output esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_dummy_len_fix esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_chip_boya_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) +spi_flash_chip_boya_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) +spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.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_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.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_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_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_mxic_read_unique_id 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_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_encryption_hal_check esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_destroy esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_disable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_done esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_enable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_prepare esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_erase_range 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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_erase_sector esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_get_chip_size esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/main/libmain.a(hello_world_main.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/esp_system/libesp_system.a(startup.c.obj) +spi_flash_hal_check_status esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_common_command esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_device_config esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_erase_block esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_chip esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_sector esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_init esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_program_page esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_read esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_resume esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_set_write_protect esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_setup_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.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_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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) +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_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) +spicommon_slave_dma_chan_alloc esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_slave_free_dma esp-idf/driver/libdriver.a(spi_common.c.obj) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +strcat /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcat.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strcmp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcmp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +strcpy /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcpy.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strerror /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) +strerror_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror.o) +strerror_r /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +strlen /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlen.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strlcat.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strerror_r.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncmp /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncmp.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-getenv_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strncpy.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +strstr /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strtol /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) +strtol_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtol.o) +strtoll /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) +strtoll_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoll.o) +strtoul /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-tzset_r.o) +strtoul_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoul.o) +strtoull /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) +strtoull_l /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-strtoull.o) +syscall_table_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +systimer_hal_connect_alarm_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_counter_can_stall_by_cpu esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_counter_value_advance esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_enable_alarm_int esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_enable_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_alarm_value esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_counter_value esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_time esp-idf/hal/libhal.a(systimer_hal.c.obj) +systimer_hal_init esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_select_alarm_mode esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_set_alarm_period esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_set_alarm_target esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +taskYIELD_OTHER_CORE esp-idf/freertos/libfreertos.a(tasks.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) +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) +tlsf_add_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_align_size esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_alloc_overhead esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_block_size esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_block_size_max esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_block_size_min esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_create esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_create_with_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_free esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_get_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_memalign esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_memalign_offs esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_pool_overhead esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_realloc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_remove_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_size esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_walk_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tzset /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\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_div_modify esp-idf/esp_rom/libesp_rom.a(esp_rom_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_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_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_isr_free esp-idf/driver/libdriver.a(uart.c.obj) +uart_isr_register esp-idf/driver/libdriver.a(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_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) +ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +ungetc /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-ungetc.o) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) +utime esp-idf/vfs/libvfs.a(vfs.c.obj) +utoa /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-utoa.o) +uxInterruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uxSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.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) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/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) +vPortCPUAcquireMutex esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortCPUAcquireMutexTimeout esp-idf/freertos/libfreertos.a(port.c.obj) +vPortCPUInitializeMutex esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +vPortCPUReleaseMutex esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortClearInterruptMask esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.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_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.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_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortSetInterruptMask esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/newlib/libnewlib.a(stdatomic.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.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(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortYieldFromISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.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) +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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.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/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(hello_world_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/freertos/libfreertos.a(port_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +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) +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(port.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.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) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vfiprintf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfiprintf.o) +vfprintf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vprintf /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32\libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.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_feed esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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.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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + 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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wifi_bt_common_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +wifi_bt_common_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +wifi_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +wifi_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +xIsrStackTop esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortSwitchFlag esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.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/newlib/libnewlib.a(locks.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.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/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.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/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCanRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(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) +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) +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) +xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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) +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) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/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) +xTaskNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.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) +xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/riscv/libriscv.a(vectors.S.obj) diff --git a/tools/test_idf_size/app_esp32s3.map b/tools/test_idf_size/app_esp32s3.map new file mode 100644 index 0000000000..94c5e82f63 --- /dev/null +++ b/tools/test_idf_size/app_esp32s3.map @@ -0,0 +1,20987 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/app_update/libapp_update.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/esp_system/libesp_system.a(ubsan.c.obj) + (__ubsan_include) +esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + (ld_include_highint_hdl) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_clk_init) +esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (int_wdt_app_cpu_ticked) +esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) +esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (g_startup_fn) +esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (panicHandler) +esp-idf/esp_system/libesp_system.a(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_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_str) +esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_uart_set_clock_baudrate) +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(cpu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (cpu_hal_set_breakpoint) +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(soc_hal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (soc_hal_stall_core) +esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) (brownout_hal_config) +esp-idf/vfs/libvfs.a(vfs.c.obj) + (vfs_include_syscalls_impl) +esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_vfs_dev_uart_register) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_log_default_level) +esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (heap_caps_get_free_size) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) +esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (esp_cpu_stall) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_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(regi2c_ctrl.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) (regi2c_ctrl_write_reg_mask) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (rtc_sleep_pu) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) +esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_chip_info) +esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xt_int_has_handler) +esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (_xt_interrupt_table) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_timer_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_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_time) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) (xPortInIsrContext) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_frxt_setup_switch) +esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (_xt_context_save) +esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) (xQueueGenericCreate) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (pxCurrentTCB) +esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + (uxTopUsedPriority) +esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) (xt_debugexception) +esp-idf/freertos/libfreertos.a(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(heap.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) (_lock_acquire) +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/main/libmain.a(hello_world_main.c.obj) + (app_main) +esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_ipc_call_blocking) +esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) (esp_ipc_isr_init) +esp-idf/esp_ipc/libesp_ipc.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_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) (esp_ipc_isr_waiting_for_finish_cmd) +esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (periph_module_enable) +esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (uart_set_word_length) +esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (gpio_set_level) +esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (rtc_gpio_deinit) +esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtc_spinlock) +esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) (esp_pm_impl_waiti) +esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) (esp_pm_lock_create) +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_config_esp32s3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) (bootloader_read_flash_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (bootloader_execute_flash_command) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (spi_flash_cache_enabled) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (spi_flash_mmap) +esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mspi_pin_init) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (spi_flash_erase_range) +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(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_partition_main_flash_region_safe) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_registered_chips) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_mxic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_page_program) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_boya) +esp-idf/spi_flash/libspi_flash.a(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/vfs/libvfs.a(vfs_uart.c.obj) (_esp_error_check_failed) +esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (esp_crosscore_int_init) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) (esp_task_wdt_init) +esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) (_xt_panic) +esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) (mpu_hal_set_region_access) +esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/hal/libhal.a(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/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (interrupt_controller_hal_desc_type) +esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) +esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (systimer_hal_init) +esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) (interrupt_controller_hal_desc_table) +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(rtc_io_periph.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtc_io_desc) +esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_periph_signal) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) (esp_err_to_name) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferCreate) +esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spicommon_bus_using_iomux) +esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) (spi_bus_init_lock) +esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) (gdma_new_channel) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (esp_ota_get_running_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_image_verify) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) (bootloader_common_get_chip_revision) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) (gdma_hal_init) +esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) (gdma_periph_signals) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) (esp_sha_write_digest_state) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_sha_dma_start) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) (esp_crypto_shared_gdma_start) +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/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) (esp_dport_access_read_buffer) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_crypto_sha_aes_lock_acquire) +/home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +/home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xthal_set_intclear) +/home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +/home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +/home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_save_extra_nw) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + (__assert_func) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (__errno) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) (fflush) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) (fiprintf) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (fopen) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fprintf) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) (_fseek_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) (_fseeko_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) (_ftello_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) (__sfvwrite_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) (_fwalk) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fwrite) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (_global_impure_ptr) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) (__smakebuf_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) (memchr) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (memcmp) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memcpy) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) (memmove) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__month_lengths) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) (__srefill_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) (__sread) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (strcmp) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (strlcpy) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strlen) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (strncpy) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) (_svfprintf_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (gettimeofday) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__tz_lock) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) (_tzset_unlocked_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (_timezone) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) (__utoa) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) (_vfiprintf_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) (_vfprintf_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) (__swsetup_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (_dtoa_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) (_fclose_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) (__sflags) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (_getenv_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (__gettzinfo) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) (gmtime_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (_localeconv_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) (_Balloc) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (frexp) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (siscanf) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) (_strerror_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) (strtoul) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (__chclass) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) (__ssvfiscanf_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) (_user_strerror) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (__submore) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) (_ctype_) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) (__env_lock) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (iswspace) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) (iswspace_l) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) (__global_locale_ptr) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_mbrtowc_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) (__ascii_mbtowc) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (__sccl) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_strtol_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_strtoll_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) (_strtoull_r) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) (__ascii_wctomb) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) (__adddf3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (__muldf3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) (__divdf3) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (__eqdf2) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) (__fixdfsi) +/home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) (__floatunsidf) + +Allocating common symbols +Common symbol size file + +registered_heaps 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) +esp_ipc_func_arg 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_start_fl + 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_func 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + +Discarded input sections + + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0xa3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0x102 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .xt.prop 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .ctors 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .xt.lit 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .xt.prop 0x0000000000000000 0x15c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32s3.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32s3.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32s3.c.obj + .comment 0x0000000000000000 0x26 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32s3.c.obj + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xt.prop 0x0000000000000000 0x144 esp-idf/app_update/libapp_update.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) + .iram1.26.literal + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init_if_static + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.27.literal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.28.literal + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.29.literal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.30.literal + 0x0000000000000000 0x20 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.mutexattr_check + 0x0000000000000000 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x0000000000000000 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.26 0x0000000000000000 0x60 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) + .rodata.pthread_create.str1.4 + 0x0000000000000000 0xf1 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x0000000000000000 0x1ac esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x0000000000000000 0x115 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x0000000000000000 0x82 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x0000000000000000 0xb6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x0000000000000000 0x2f esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x0000000000000000 0x2a 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 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x0000000000000000 0x29 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x0000000000000000 0x5d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x0000000000000000 0x70 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_destroy.str1.4 + 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x0000000000000000 0x7a esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.27 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.28 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.29 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.30 0x0000000000000000 0x6d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x0000000000000000 0x24 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 0x22 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 0x26 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.__func__$6561 + 0x0000000000000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6532 + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6514 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6503 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6496 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6491 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6484 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6476 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6466 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data.pthread_lazy_init_lock + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.lit 0x0000000000000000 0xe8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.prop 0x0000000000000000 0xf6c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_local_storage_thread_deleted_callback + 0x0000000000000000 0x1c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_getspecific + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_setspecific + 0x0000000000000000 0x20 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.find_value + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.pthread_local_storage_thread_deleted_callback.str1.4 + 0x0000000000000000 0x3b esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_local_storage_thread_deleted_callback + 0x0000000000000000 0x4a 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) + .text.pthread_getspecific + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_setspecific + 0x0000000000000000 0xc3 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.__func__$6265 + 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler + 0x0000000000000000 0x14 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 0x32 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__$4255 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4251 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4245 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4241 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4237 + 0x0000000000000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4233 + 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4228 + 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4223 + 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4219 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4214 + 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4208 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4202 + 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4197 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4191 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4185 + 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4179 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4174 + 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.prop 0x0000000000000000 0x3c0 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) + .data.g_spiram_ok + 0x0000000000000000 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x0000000000000000 0x1f8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x0000000000000000 0x60 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) + .xt.lit 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.prop 0x0000000000000000 0x18c 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) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/esp_system/libesp_system.a(cache_err_int.c.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) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x0000000000000000 0xc0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .iram1.29.literal + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_unregister_shutdown_handler + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_get_free_heap_size + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_get_free_internal_heap_size + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_get_idf_version + 0x0000000000000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .iram1.29 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_unregister_shutdown_handler + 0x0000000000000000 0x2b esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_free_heap_size + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_free_internal_heap_size + 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_get_idf_version + 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.prop 0x0000000000000000 0x240 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.__cxx_eh_arena_size_get + 0x0000000000000000 0x7 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) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.prop 0x0000000000000000 0x2b8 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) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.prop 0x0000000000000000 0x2dc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_disable + 0x0000000000000000 0x4 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 0x14 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xt.prop 0x0000000000000000 0x6c 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) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.prop 0x0000000000000000 0x60 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) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.prop 0x0000000000000000 0x2dc 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) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.prop 0x0000000000000000 0x33c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.literal + 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.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) + .xt.prop 0x0000000000000000 0x30 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_for_cpu + 0x0000000000000000 0x10 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_for_cpu + 0x0000000000000000 0x44 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x44 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x2c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.prop 0x0000000000000000 0x324 esp-idf/esp_system/libesp_system.a(panic.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) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.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 0xcd esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x3f0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .literal.cpu_hal_set_watchpoint + 0x0000000000000000 0x8 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text.cpu_hal_clear_breakpoint + 0x0000000000000000 0x2a esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text.cpu_hal_set_watchpoint + 0x0000000000000000 0x5c esp-idf/hal/libhal.a(cpu_hal.c.obj) + .text.cpu_hal_clear_watchpoint + 0x0000000000000000 0x1a esp-idf/hal/libhal.a(cpu_hal.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .literal.uart_hal_txfifo_rst + 0x0000000000000000 0x8 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 0x27 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x0000000000000000 0x46 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x0000000000000000 0x2e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(soc_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(soc_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(soc_hal.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/hal/libhal.a(soc_hal.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/hal/libhal.a(soc_hal.c.obj) + .literal.brownout_hal_intr_enable + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.brownout_hal_intr_clear + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text.brownout_hal_intr_enable + 0x0000000000000000 0x23 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text.brownout_hal_intr_clear + 0x0000000000000000 0x1a esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.call_end_selects + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.set_global_fd_sets + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_range + 0x0000000000000000 0x28 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 0x1c 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 0x18 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 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir_r + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_telldir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_seekdir + 0x0000000000000000 0x10 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 0x10 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_select + 0x0000000000000000 0x64 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.call_end_selects + 0x0000000000000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x0000000000000000 0x178 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x0000000000000000 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_range + 0x0000000000000000 0x112 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 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x0000000000000000 0x53 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x0000000000000000 0x89 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 0x89 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x0000000000000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x0000000000000000 0x81 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fcntl_r + 0x0000000000000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x0000000000000000 0x9d esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fsync + 0x0000000000000000 0x76 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 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x0000000000000000 0x66 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x0000000000000000 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x0000000000000000 0x5e 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 0x5f 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_select + 0x0000000000000000 0x4e6 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x0000000000000000 0x80 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x0000000000000000 0x77 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x0000000000000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.lit 0x0000000000000000 0x198 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.prop 0x0000000000000000 0x2124 esp-idf/vfs/libvfs.a(vfs.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_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 0x32 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) + .text.esp_vfs_dev_uart_port_set_rx_line_endings + 0x0000000000000000 0x25 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_tx_line_endings + 0x0000000000000000 0x25 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x0000000000000000 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x0000000000000000 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_driver + 0x0000000000000000 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.lit 0x0000000000000000 0xf0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.prop 0x0000000000000000 0x1638 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_log_set_vprintf + 0x0000000000000000 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_set + 0x0000000000000000 0x58 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) + .rodata.esp_log_level_set.str1.4 + 0x0000000000000000 0x2 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_set + 0x0000000000000000 0x138 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_get + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log.c.obj) + .rodata.__func__$3571 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/log/liblog.a(log.c.obj) + .xt.prop 0x0000000000000000 0x360 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_impl_lock + 0x0000000000000000 0x10 esp-idf/log/liblog.a(log_freertos.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) + .text.esp_log_impl_lock + 0x0000000000000000 0x32 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 0xe9 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$5559 + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$5558 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.prop 0x0000000000000000 0x264 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.28.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.29.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.34.literal + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.30.literal + 0x0000000000000000 0x4 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_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 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.35.literal + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.36.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.28 0x0000000000000000 0x59 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.29 0x0000000000000000 0x6c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.34 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.30 0x0000000000000000 0x58 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_free_size + 0x0000000000000000 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x0000000000000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x0000000000000000 0x7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x0000000000000000 0x57 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x0000000000000000 0x3e 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) + .text.heap_caps_get_allocated_size + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.35 0x0000000000000000 0x97 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.36 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__$5218 + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x0000000000000000 0xe8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x0000000000000000 0xc30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x0000000000000000 0x3c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x0000000000000000 0x108 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x0000000000000000 0x62 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$5100 + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.prop 0x0000000000000000 0x3c0 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_internal_lock + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_internal_unlock + 0x0000000000000000 0x4 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 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl_offs + 0x0000000000000000 0x10 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_internal_lock + 0x0000000000000000 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_unlock + 0x0000000000000000 0xf 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) + .text.multi_heap_get_next_block + 0x0000000000000000 0x38 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 0x66 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 0x54 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 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x0000000000000000 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5276 + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5266 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5227 + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5220 + 0x0000000000000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.prop 0x0000000000000000 0x648 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.integrity_walker + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_check + 0x0000000000000000 0x50 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_check_pool + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_block_size_max + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_remove_pool + 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_memalign_offs + 0x0000000000000000 0xb4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_memalign + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.integrity_walker + 0x0000000000000000 0x67 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.tlsf_check.str1.4 + 0x0000000000000000 0x237 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_check + 0x0000000000000000 0x1d1 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_check_pool + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_align_size + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_block_size_max + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_alloc_overhead + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_remove_pool + 0x0000000000000000 0x10f esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.4 + 0x0000000000000000 0x6b esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_memalign_offs + 0x0000000000000000 0x57e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .text.tlsf_memalign + 0x0000000000000000 0x15 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3844 + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3567 + 0x0000000000000000 0x9 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3812 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3578 + 0x0000000000000000 0xa esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3727 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3739 + 0x0000000000000000 0xb esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .xt.prop 0x0000000000000000 0xc90 esp-idf/heap/libheap.a(heap_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) + .xt.lit 0x0000000000000000 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.prop 0x0000000000000000 0x204 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) + .xt.prop 0x0000000000000000 0x54 esp-idf/heap/libheap.a(memory_layout.c.obj) + .iram1.5.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.6.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.5 0x0000000000000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.6 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .xt.prop 0x0000000000000000 0x1d4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.3.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.4.literal + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.5.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_rtc_time + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3 0x0000000000000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.4 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.5 0x0000000000000000 0xa 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) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.prop 0x0000000000000000 0x1e0 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.26.literal + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.31.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.32.literal + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x0000000000000000 0x5d 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.26 0x0000000000000000 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_cpu + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.31 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.32 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.lit 0x0000000000000000 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.prop 0x0000000000000000 0xdd4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.25.literal + 0x0000000000000000 0x10 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.25 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_freq_get + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_divider_set + 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_divider_set + 0x0000000000000000 0xc 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) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_freq_get + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_divider_set + 0x0000000000000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_divider_set + 0x0000000000000000 0x42 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) + .xt.lit 0x0000000000000000 0x108 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.prop 0x0000000000000000 0xa14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x0000000000000000 0x70 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) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_sleep_finish + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x0000000000000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_set_wakeup_time + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .rodata 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_finish + 0x0000000000000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x0000000000000000 0x393 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x0000000000000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_set_wakeup_time + 0x0000000000000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x0000000000000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.prop 0x0000000000000000 0x204 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_clk_cal_ratio + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_light_slp_time_get + 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_deep_slp_time_get + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_light_slp_time_get + 0x0000000000000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_deep_slp_time_get + 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_wait_for_slow_cycle + 0x0000000000000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.prop 0x0000000000000000 0x2e8 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) + .xt.prop 0x0000000000000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.xt_set_exception_handler + 0x0000000000000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x0000000000000000 0x4b esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .iram1.29.literal + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.print_timer_info + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_create + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.25.literal + 0x0000000000000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.26.literal + 0x0000000000000000 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.27.literal + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_delete + 0x0000000000000000 0x1c 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.35.literal + 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.36.literal + 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_is_active + 0x0000000000000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.30 0x0000000000000000 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.29 0x0000000000000000 0x72 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) + .text.esp_timer_create + 0x0000000000000000 0x81 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.25 0x0000000000000000 0x79 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.26 0x0000000000000000 0xa1 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.27 0x0000000000000000 0x39 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_delete + 0x0000000000000000 0x69 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x0000000000000000 0x49 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 0xd9 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.35 0x0000000000000000 0x47 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.36 0x0000000000000000 0x54 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_is_active + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.prop 0x0000000000000000 0x918 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.3 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.prop 0x0000000000000000 0xc0 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_systimer.c.obj) + .literal.esp_timer_impl_unlock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.23.literal + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.26.literal + 0x0000000000000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_advance + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_deinit + 0x0000000000000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.29.literal + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_lock + 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_unlock + 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.23 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.26 0x0000000000000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.28 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_advance + 0x0000000000000000 0x4f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_deinit + 0x0000000000000000 0x49 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.29 0x0000000000000000 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x4f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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.vPortSetStackWatchpoint + 0x0000000000000000 0x8 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) + .text.vPortSetStackWatchpoint + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$5651 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.prop 0x0000000000000000 0x4a4 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/freertos/libfreertos.a(portasm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.prop 0x0000000000000000 0x108 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .DebugExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .DoubleExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .KernelExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level2InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level3InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level4InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level5InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .NMIExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xt.prop 0x0000000000000000 0x4e0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.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) + .xt.lit 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.prop 0x0000000000000000 0x9c 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) + .xt.lit 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.prop 0x0000000000000000 0x120 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphore + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueGenericSendFromISR + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueReceive + 0x0000000000000000 0x7c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x0000000000000000 0x7c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaiting + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.vQueueWaitForMessageRestricted + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolderFromISR.str1.4 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x0000000000000000 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x0000000000000000 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x0000000000000000 0x4f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphore + 0x0000000000000000 0x4b esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericSendFromISR + 0x0000000000000000 0x122 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueReceive + 0x0000000000000000 0x1ad esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x0000000000000000 0x1ad 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 0xa4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x0000000000000000 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaiting + 0x0000000000000000 0x33 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x0000000000000000 0x5c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x0000000000000000 0x33 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x0000000000000000 0x38 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__$5657 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5647 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5605 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5599 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5593 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5587 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5565 + 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5541 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5521 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5498 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5492 + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5472 + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.lit 0x0000000000000000 0x130 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.prop 0x0000000000000000 0x1200 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskIsTaskSuspended + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateStaticPinnedToCore + 0x0000000000000000 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateRestrictedStatic + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateRestricted + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskDelayUntil + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x0000000000000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnUnorderedEventList + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskRemoveFromUnorderedEventList + 0x0000000000000000 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSuspend + 0x0000000000000000 0x70 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskAllocateMPURegions + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskResetEventItemValue + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyWait + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotify + 0x0000000000000000 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyStateClear + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskGetSnapshot + 0x0000000000000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetNext + 0x0000000000000000 0x3c 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.prvTaskGetSnapshot + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvFirstTaskGet + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvNextTaskGet + 0x0000000000000000 0x15 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 0x70 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x0000000000000000 0xe9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateStaticPinnedToCore + 0x0000000000000000 0x158 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateRestrictedStatic.str1.4 + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateRestrictedStatic + 0x0000000000000000 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateRestricted.str1.4 + 0x0000000000000000 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateRestricted + 0x0000000000000000 0x7b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelayUntil + 0x0000000000000000 0xb7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x0000000000000000 0xdb 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 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x0000000000000000 0xfd 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.xTaskGetIdleTaskHandle.str1.4 + 0x0000000000000000 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x0000000000000000 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x0000000000000000 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnUnorderedEventList + 0x0000000000000000 0x74 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x0000000000000000 0x5f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskRemoveFromUnorderedEventList + 0x0000000000000000 0xd9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x0000000000000000 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0x23 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSuspend + 0x0000000000000000 0x160 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000000000000 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetThreadLocalStoragePointer + 0x0000000000000000 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskAllocateMPURegions + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskResetEventItemValue + 0x0000000000000000 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyWait + 0x0000000000000000 0x137 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotify + 0x0000000000000000 0x16e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x0000000000000000 0x19f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyStateClear + 0x0000000000000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x0000000000000000 0xa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskGetSnapshot.str1.4 + 0x0000000000000000 0x5e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskGetSnapshot + 0x0000000000000000 0x75 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetNext + 0x0000000000000000 0x21a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5934 + 0x0000000000000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5866 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5848 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5676 + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5672 + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5653 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5647 + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5597 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5588 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5530 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5519 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5524 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5513 + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5487 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5473 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5417 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5410 + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5402 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.lit 0x0000000000000000 0x248 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.prop 0x0000000000000000 0x27d8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .iram1.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.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) + .xt.prop 0x0000000000000000 0xf0 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) + .xt.lit 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.prop 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(abort.c.obj) + .literal.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.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 0x1b esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.prop 0x0000000000000000 0x2ac esp-idf/newlib/libnewlib.a(heap.c.obj) + .iram1.26.literal + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.27.literal + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.26 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.27 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.prop 0x0000000000000000 0x63c 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 0x42 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__$3435 + 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.prop 0x0000000000000000 0xd8 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 0xdd esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.prop 0x0000000000000000 0x12c 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) + .xt.lit 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .literal._write_r_console + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._read_r_console + 0x0000000000000000 0x8 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 0x35 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x0000000000000000 0x2e esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.fcntl 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.prop 0x0000000000000000 0x1a4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime + 0x0000000000000000 0x40 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 0x20 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 0xe6 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 0x4e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x0000000000000000 0x94 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.prop 0x0000000000000000 0x4e0 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) + .xt.lit 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xt.prop 0x0000000000000000 0x1a4 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 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x0000000000000000 0x2a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0xbd esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x0000000000000000 0x4a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x0000000000000000 0xa6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x0000000000000000 0x3f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x0000000000000000 0xa2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x0000000000000000 0x77 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x0000000000000000 0xbe esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ17__cxa_guard_abortE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_releaseE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZL18wait_for_guard_objP7guard_tE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x22 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_acquireE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2e 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) + .xt.lit 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.prop 0x0000000000000000 0x270 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/main/libmain.a(hello_world_main.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/main/libmain.a(hello_world_main.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .xt.prop 0x0000000000000000 0x1e0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .iram1.32.literal + 0x0000000000000000 0x18 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.25.literal + 0x0000000000000000 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.26.literal + 0x0000000000000000 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.27.literal + 0x0000000000000000 0x2c esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.28.literal + 0x0000000000000000 0x34 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.29.literal + 0x0000000000000000 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.31.literal + 0x0000000000000000 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.32 0x0000000000000000 0x71 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.25 0x0000000000000000 0x4c esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.26 0x0000000000000000 0x4c esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.27 0x0000000000000000 0x72 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x2 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.28 0x0000000000000000 0x84 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.29 0x0000000000000000 0x4b esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.31 0x0000000000000000 0x4b esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .rodata.__func__$5541 + 0x0000000000000000 0x1e esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_isr_finish_cmd + 0x0000000000000000 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x0000000000000000 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x0000000000000000 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .data.s_ipc_isr_mux + 0x0000000000000000 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .xt.prop 0x0000000000000000 0x3f0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x0000000000000000 0x48 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .iram1 0x0000000000000000 0x7 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x0000000000000000 0xb6 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x0000000000000000 0x26 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .debug_str 0x0000000000000000 0xef esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .xt.prop 0x0000000000000000 0x24 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .literal.periph_module_disable + 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .iram1.26.literal + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .iram1.27.literal + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.wifi_module_enable + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.wifi_module_disable + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_disable + 0x0000000000000000 0x423 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x0000000000000000 0x22b esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .iram1.26 0x0000000000000000 0x73 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .iram1.27 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.wifi_module_enable + 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.wifi_module_disable + 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.__func__$5005 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.__func__$5001 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xt.prop 0x0000000000000000 0x14e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.uart_pattern_dequeue + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.rtc_clk_enable + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_link_free + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.rtc_clk_disable + 0x0000000000000000 0x24 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_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_module_disable + 0x0000000000000000 0x14 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_disable_intr_mask + 0x0000000000000000 0x20 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 0x48 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_check_buf_full + 0x0000000000000000 0x18 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 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_isr_register + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_isr_free + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_pin + 0x0000000000000000 0xac 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 0x80 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 0x4c 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_driver_delete + 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_install + 0x0000000000000000 0xb8 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 0x3e 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.rtc_clk_enable + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_link_free + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.rtc_clk_disable.str1.4 + 0x0000000000000000 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + .text.rtc_clk_disable + 0x0000000000000000 0x63 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_enable + 0x0000000000000000 0x53 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x0000000000000000 0x7af esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_disable + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x0000000000000000 0xc9 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x0000000000000000 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x0000000000000000 0xae esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x0000000000000000 0x54 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_disable_intr_mask + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x0000000000000000 0xb9 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.4 + 0x0000000000000000 0x37 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x10c 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_check_buf_full + 0x0000000000000000 0x6e 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 0x3a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_all + 0x0000000000000000 0x1f0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_register + 0x0000000000000000 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_free + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x0000000000000000 0x41a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x0000000000000000 0x4b 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 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x0000000000000000 0x84 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_param_config + 0x0000000000000000 0x175 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 0x2b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x0000000000000000 0x122 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x0000000000000000 0x8f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x0000000000000000 0xf4 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_read_bytes + 0x0000000000000000 0x1bd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_delete + 0x0000000000000000 0x1d9 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x0000000000000000 0x181 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_install + 0x0000000000000000 0x2fc esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x0000000000000000 0x4b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x0000000000000000 0x120 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x0000000000000000 0x43 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 0x3d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x0000000000000000 0xda esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x0000000000000000 0x8a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x0000000000000000 0x30 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 0x62 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 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8137 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8129 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8125 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8120 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8115 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8109 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8104 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8099 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8094 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$7726 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8078 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .bss.pat_flg$7960 + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8072 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8031 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8020 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8013 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7987 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7939 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7934 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7929 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7924 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7919 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7914 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7899 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7894 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7884 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7865 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7854 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7847 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7841 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7811 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7801 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7796 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7791 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7784 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7777 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .data.rtc_num_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .bss.rtc_enabled + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.lit 0x0000000000000000 0x218 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.prop 0x0000000000000000 0x22a4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.gpio_input_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_input_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_output_disable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_od_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_od_disable + 0x0000000000000000 0x24 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_sleep_input_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_output_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable_on_core + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_output_enable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.24.literal + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_level + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_direction + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_config + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x0000000000000000 0x38 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 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_force_hold_all + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_force_unhold_all + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_input_enable.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_enable + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_disable + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_disable + 0x0000000000000000 0xb1 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_enable + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_disable + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x0000000000000000 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x0000000000000000 0x7d 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 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x0000000000000000 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x0000000000000000 0x91 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x0000000000000000 0x91 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x0000000000000000 0x91 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable_on_core + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_enable + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.24 0x0000000000000000 0xe2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x0000000000000000 0x90 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 0xd4 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable + 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_disable + 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_level + 0x0000000000000000 0xe7 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x0000000000000000 0x37 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x0000000000000000 0x115 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_direction + 0x0000000000000000 0xad esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x0000000000000000 0xd6 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_config + 0x0000000000000000 0x1f8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x0000000000000000 0x2e 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 0xe1 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x0000000000000000 0xcd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x0000000000000000 0x8b 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 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x0000000000000000 0x10f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x0000000000000000 0xc4 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 0xb8 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 0xc6 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x0000000000000000 0xcd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_force_hold_all + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_force_unhold_all + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x0000000000000000 0x9e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x0000000000000000 0x91 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x0000000000000000 0x115 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x0000000000000000 0x91 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x0000000000000000 0x91 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$8013 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$8009 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7963 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7971 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7959 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7967 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7998 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7983 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7987 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7975 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7979 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7992 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7935 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7930 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7925 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7919 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7913 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7908 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7901 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7886 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7882 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7875 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$7856 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$7850 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7808 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7812 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7800 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7804 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7792 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7796 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7837 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7825 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7817 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7788 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7780 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7784 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7775 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7770 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7766 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7762 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7758 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .data.gpio_context + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x0000000000000000 0x4d8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x0000000000000000 0xca50 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x0000000000000000 0x633 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x0000000000000000 0x20c8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x0000000000000000 0x1b0 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x0000000000000000 0x210 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x0000000000000000 0x40e2 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_str 0x0000000000000000 0x6a54 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.lit 0x0000000000000000 0x198 esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.prop 0x0000000000000000 0x153c esp-idf/driver/libdriver.a(gpio.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 0x4c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x0000000000000000 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_hold_en + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_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_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.rtc_gpio_init.str1.4 + 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x0000000000000000 0xb9 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x0000000000000000 0xa2 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x0000000000000000 0xc4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x0000000000000000 0x149 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x0000000000000000 0x116 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x0000000000000000 0xa5 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x0000000000000000 0xa6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x0000000000000000 0xa5 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x0000000000000000 0xa9 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8286 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8282 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8271 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8267 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8263 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8259 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8255 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8251 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8247 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8243 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8238 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8233 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8228 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8223 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8219 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8214 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8210 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x0000000000000000 0x1d8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x0000000000000000 0xa2f7 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x0000000000000000 0x3e3 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x0000000000000000 0xb8d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x0000000000000000 0x1dff esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_str 0x0000000000000000 0x58ac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.prop 0x0000000000000000 0x9b4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_isr + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .literal.rtc_isr_ensure_installed + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .literal.rtc_isr_register + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .literal.rtc_isr_deregister + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text.rtc_isr 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text.rtc_isr_ensure_installed + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text.rtc_isr_register + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x0000000000000000 0x61 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.s_rtc_isr_handle + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .data.s_rtc_isr_handler_list_lock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.s_rtc_isr_handler_list + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .data.rtc_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_info 0x0000000000000000 0x9da3 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_abbrev 0x0000000000000000 0x377 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_loc 0x0000000000000000 0x336 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_line 0x0000000000000000 0x9b9 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_str 0x0000000000000000 0x64a8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xt.prop 0x0000000000000000 0x1b0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .iram1.25.literal + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.27.literal + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.28.literal + 0x0000000000000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.29.literal + 0x0000000000000000 0xc esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_impl_get_mode + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_get_configuration + 0x0000000000000000 0x10 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.26.literal + 0x0000000000000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_impl_get_cpu_freq + 0x0000000000000000 0x14 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_impl_init + 0x0000000000000000 0x80 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_impl_idle_hook + 0x0000000000000000 0x10 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.30.literal + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.periph_inform_out_light_sleep_overhead + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_register_light_sleep_default_params_config_callback + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .literal.esp_pm_unregister_light_sleep_default_params_config_callback + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.25 0x0000000000000000 0x1d esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.27 0x0000000000000000 0x16 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.28 0x0000000000000000 0xfa esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.29 0x0000000000000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_get_mode + 0x0000000000000000 0x1f esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_configure + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_get_configuration + 0x0000000000000000 0x32 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.26 0x0000000000000000 0xb6 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_get_cpu_freq + 0x0000000000000000 0x2c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .rodata.esp_pm_impl_init.str1.4 + 0x0000000000000000 0x141 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_init + 0x0000000000000000 0x1a0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_impl_idle_hook + 0x0000000000000000 0x3c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .iram1.30 0x0000000000000000 0x1c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x32 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x0000000000000000 0x2b esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x0000000000000000 0x20 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x0000000000000000 0x12 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x0000000000000000 0x13 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .rodata.__func__$7271 + 0x0000000000000000 0x11 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_light_sleep_default_params_config_cb + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_periph_inform_out_light_sleep_overhead_cb + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_config_changed + 0x0000000000000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_cpu_freq_by_mode + 0x0000000000000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_rtos_lock_handle + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_core_idle + 0x0000000000000000 0x2 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_mode_mask + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_mode_lock_counts + 0x0000000000000000 0x10 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .data.s_new_mode + 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .bss.s_is_switching + 0x0000000000000000 0x1 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .data.s_mode 0x0000000000000000 0x4 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .data.s_switch_lock + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .xt.prop 0x0000000000000000 0x69c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_create + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_lock_delete + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .iram1.23 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .iram1.24 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .text.esp_pm_dump_locks + 0x0000000000000000 0x8 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_info 0x0000000000000000 0x1663 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_abbrev 0x0000000000000000 0x238 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_loc 0x0000000000000000 0xb9 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_line 0x0000000000000000 0x632 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .debug_str 0x0000000000000000 0x1476 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .xt.prop 0x0000000000000000 0xb4 esp-idf/esp_pm/libesp_pm.a(pm_locks.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) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .iram1.0.literal + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2.literal + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3.literal + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.0 0x0000000000000000 0xa6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.1 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.2 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .iram1.3 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xt.prop 0x0000000000000000 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .literal.write_status_8b_wrsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_16b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_xmc25qu64a + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_xmc25qu64a + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.enable_qio_mode + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr2 + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr2 + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_16b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_xmc25qu64a + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_xmc25qu64a + 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.enable_qio_mode.str1.4 + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.enable_qio_mode + 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.4 + 0x0000000000000000 0x6f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x0000000000000000 0x106 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.chip_data + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.prop 0x0000000000000000 0x270 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x0000000000000000 0x4 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.1.literal + 0x0000000000000000 0x4c 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_flash_wrap_set + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x0000000000000000 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x0000000000000000 0x6b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x0000000000000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x0000000000000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x0000000000000000 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.1 0x0000000000000000 0x15c 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_flash_wrap_set + 0x0000000000000000 0x154 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) + .xt.lit 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x0000000000000000 0x3a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.30.literal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.31.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.35.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.36.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .literal.esp_enable_cache_wrap + 0x0000000000000000 0x48 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.30 0x0000000000000000 0x36 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.31 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.35 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.36 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.esp_enable_cache_wrap.str1.4 + 0x0000000000000000 0x18a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text.esp_enable_cache_wrap + 0x0000000000000000 0x13a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x0000000000000000 0x4c8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.31.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.33.literal + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.34.literal + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.31 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_mmap_dump.str1.4 + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x0000000000000000 0x5b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.33 0x0000000000000000 0x5a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.34 0x0000000000000000 0x88 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.prop 0x0000000000000000 0x6cc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.30.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.37.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.38.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.39.literal + 0x0000000000000000 0x14 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.30 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.37 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.38 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.39 0x0000000000000000 0x50 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.40 0x0000000000000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.27 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x0000000000000000 0x288 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.30.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.46.literal + 0x0000000000000000 0x28 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.33.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.34.literal + 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.35.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.36.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.37.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.38.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.39.literal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.40.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.41.literal + 0x0000000000000000 0x44 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.43.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.44.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.45.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) + .iram1.47.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.48.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.49.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.50.literal + 0x0000000000000000 0x8 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.30 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.46 0x0000000000000000 0x87 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x0000000000000000 0x40 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.33 0x0000000000000000 0x94 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.34 0x0000000000000000 0x246 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.35 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.36 0x0000000000000000 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.37 0x0000000000000000 0xa8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.38 0x0000000000000000 0xdc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.39 0x0000000000000000 0x122 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.40 0x0000000000000000 0x14e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.41 0x0000000000000000 0x15c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.43 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.44 0x0000000000000000 0x64 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.45 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x0000000000000000 0x8e 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) + .iram1.47 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.48 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.49 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.50 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$7946 + 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$7928 + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$7856 + 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.lit 0x0000000000000000 0xf8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x0000000000000000 0x10f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.23.literal + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x0000000000000000 0x58 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) + .iram1.23 0x0000000000000000 0x16e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x0000000000000000 0x29 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x0000000000000000 0x122 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x0000000000000000 0x16d esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$8655 + 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x0000000000000000 0x294 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.32.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.31.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.register_dev + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x0000000000000000 0x8 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) + .iram1.32 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.31 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.register_dev + 0x0000000000000000 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x0000000000000000 0x82 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x0000000000000000 0x23 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 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.prop 0x0000000000000000 0x4c8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.6.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.4 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.6 0x0000000000000000 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .dram1.0 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .literal.esp_partition_find_first + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_register_external + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_verify + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_write + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_read_raw + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_write_raw + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_erase_range + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_mmap + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_read + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_get_sha256 + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_check_identity + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_find_first + 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_register_external.str1.4 + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_register_external + 0x0000000000000000 0x128 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x0000000000000000 0x5e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x0000000000000000 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_verify + 0x0000000000000000 0x84 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_write + 0x0000000000000000 0x69 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_read_raw + 0x0000000000000000 0x45 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_write_raw + 0x0000000000000000 0x45 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_erase_range + 0x0000000000000000 0x59 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_mmap + 0x0000000000000000 0x6a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_read + 0x0000000000000000 0x87 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_get_sha256 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_check_identity + 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4585 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4576 + 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4570 + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4563 + 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4556 + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4546 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4533 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4363 + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xt.lit 0x0000000000000000 0xa0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xt.prop 0x0000000000000000 0xb10 esp-idf/spi_flash/libspi_flash.a(partition.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) + .xt.prop 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + COMMON 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) + .xt.lit 0x0000000000000000 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x0000000000000000 0xa5c 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) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.prop 0x0000000000000000 0x108 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) + .xt.lit 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x0000000000000000 0xa8 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) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.prop 0x0000000000000000 0x138 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) + .xt.lit 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.prop 0x0000000000000000 0x2f4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .xt.prop 0x0000000000000000 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x0000000000000000 0x2b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.prop 0x0000000000000000 0x2f4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal._esp_error_check_failed_without_abort + 0x0000000000000000 0x8 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 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.28.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.28 0x0000000000000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.prop 0x0000000000000000 0x1bc esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .literal.esp_task_wdt_deinit + 0x0000000000000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x0000000000000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x0000000000000000 0x1c 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) + .rodata.esp_task_wdt_deinit.str1.4 + 0x0000000000000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x0000000000000000 0x7f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x0000000000000000 0xb6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x0000000000000000 0x5d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$7515 + 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.prop 0x0000000000000000 0x5c4 esp-idf/esp_system/libesp_system.a(task_wdt.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) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.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) + .xt.prop 0x0000000000000000 0x84 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x0000000000000000 0xc esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x0000000000000000 0x293 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x0000000000000000 0xd0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x18c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x0000000000000000 0x8796 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x321 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x0000000000000000 0x69c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x0000000000000000 0xb90 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x0000000000000000 0x484f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xt.prop 0x0000000000000000 0x198 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x0000000000000000 0xc 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 0x66 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x0000000000000000 0x5e 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 0x18c2 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x2c7 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x0000000000000000 0x240 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 0x5dc esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x0000000000000000 0xe44 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.uart_hal_set_sclk + 0x0000000000000000 0x10 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 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x0000000000000000 0x8 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 0x38 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 0x58 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_sclk + 0x0000000000000000 0x2a esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x0000000000000000 0x74 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 0xaa esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x0000000000000000 0x7c 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 0x1be 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 0x89 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 0x164 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x0000000000000000 0x4e esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x0000000000000000 0x5c esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x0000000000000000 0x17 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xt.prop 0x0000000000000000 0x6c0 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) + .data.__compound_literal$11 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$10 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$9 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$8 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$7 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$6 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$5 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$4 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$3 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$2 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$1 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data.__compound_literal$0 + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xt.prop 0x0000000000000000 0x258 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) + .xt.lit 0x0000000000000000 0x70 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x540 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) + .xt.lit 0x0000000000000000 0x28 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xt.prop 0x0000000000000000 0x2d0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .literal.systimer_hal_get_time + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .literal.systimer_hal_get_alarm_value + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_time + 0x0000000000000000 0x1b esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text.systimer_hal_get_alarm_value + 0x0000000000000000 0x1e esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xt.prop 0x0000000000000000 0x4b0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .xt.prop 0x0000000000000000 0x3c esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x0000000000000000 0xc4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x0000000000000000 0xc4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x0000000000000000 0x14ff esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x1dc 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 0x382 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x0000000000000000 0xb4b esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(gpio_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) + .rodata.rtc_io_desc + 0x0000000000000000 0x4d0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .rodata.rtc_io_num_map + 0x0000000000000000 0xc4 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x0000000000000000 0x72b8 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x248 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x0000000000000000 0x3ae esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_str 0x0000000000000000 0x3f0c esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x0000000000000000 0x6c esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x0000000000000000 0x4f7e esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x264 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 0x3a4 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x0000000000000000 0x3696 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/libsoc.a(spi_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 0x2578 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x22d 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 0x393 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x0000000000000000 0x2213 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/libsoc.a(uart_periph.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 0x5a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.prop 0x0000000000000000 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.prvReturnItemByteBuf + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemByteBuf + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvAcquireItemNoSplit + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x0000000000000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x0000000000000000 0x34 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x0000000000000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateStatic + 0x0000000000000000 0x34 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x0000000000000000 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendFromISR + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItemFromISR + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCanRead + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x0000000000000000 0x3e 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 0xfd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x0000000000000000 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x72 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 0x140 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemDefault.str1.4 + 0x0000000000000000 0x186 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x0000000000000000 0x190 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x0000000000000000 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvAcquireItemNoSplit + 0x0000000000000000 0xb1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x0000000000000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x0000000000000000 0x126 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x0000000000000000 0xaa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x0000000000000000 0x45 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x0000000000000000 0xc4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x0000000000000000 0x8d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x0000000000000000 0xfc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x0000000000000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x0000000000000000 0xe8 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 0xbc 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 0xb7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x0000000000000000 0x12a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x0000000000000000 0x79 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x0000000000000000 0xc0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x0000000000000000 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveSplit.str1.4 + 0x0000000000000000 0x71 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x0000000000000000 0x9c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x9c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveUpTo.str1.4 + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x0000000000000000 0x60 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x0000000000000000 0x57 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x0000000000000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.4 + 0x0000000000000000 0xb5 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x73 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCanRead + 0x0000000000000000 0x2b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x73 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x0000000000000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x0000000000000000 0x47 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5915 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5910 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5898 + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5892 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5884 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5877 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5872 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5867 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5862 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5847 + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5838 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5826 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5813 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5720 + 0x0000000000000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5801 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5784 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5761 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5748 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5739 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4478 + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5592 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5613 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5605 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5652 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5666 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5632 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5598 + 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5640 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5660 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5676 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5725 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.lit 0x0000000000000000 0x130 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.prop 0x0000000000000000 0x1788 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.bus_uses_iomux_pins + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_alloc + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x0000000000000000 0x24 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_slave_dma_chan_alloc + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_slave_free_dma + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x0000000000000000 0x150 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_main_set_lock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_lock_get_by_id + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_initialize + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_get_attr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_free + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_register_destroy_func + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_alloc.str1.4 + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x0000000000000000 0x102 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x0000000000000000 0xba 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 0x86 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_slave_dma_chan_alloc + 0x0000000000000000 0x72 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_slave_free_dma + 0x0000000000000000 0x46 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x0000000000000000 0x1bd esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x0000000000000000 0x8fc esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x0000000000000000 0x65 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x0000000000000000 0x13c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x0000000000000000 0x32 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 0xa4 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 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x0000000000000000 0xaf esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x0000000000000000 0x278 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_free + 0x0000000000000000 0x78 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.23 0x0000000000000000 0x7 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.24 0x0000000000000000 0x7 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.25 0x0000000000000000 0x5 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.26 0x0000000000000000 0x5 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$8473 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8453 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$8432 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8409 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8414 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8385 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8400 + 0x0000000000000000 0x1f 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 0x58 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 0x268 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000000000 0x83a3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x0000000000000000 0x540 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x0000000000000000 0x10c9 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x0000000000000000 0x2b8c esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x0000000000000000 0x49ec esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.prop 0x0000000000000000 0xbf4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_init_lock + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.49.literal + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.51.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.54.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.55.literal + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.56.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.57.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.58.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.59.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 0x55 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 0x55 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x0000000000000000 0x3b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x0000000000000000 0x9d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x0000000000000000 0x47 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.46 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.47 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xed esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.49 0x0000000000000000 0x9d esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.51 0x0000000000000000 0x132 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.52 0x0000000000000000 0xa esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.53 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.54 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.55 0x0000000000000000 0xbd esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.56 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.57 0x0000000000000000 0xad esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.58 0x0000000000000000 0x6a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.59 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$7474 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$7454 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$7444 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__func__$7376 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .dram1.25 0x0000000000000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xt.prop 0x0000000000000000 0x6f0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.gdma_acquire_pair_handle + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_uninstall_group + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_uninstall_pair + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_del_rx_channel + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_del_tx_channel + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_release_pair_handle + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_release_group_handle + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_acquire_group_handle + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_install_tx_interrupt + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_install_rx_interrupt + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gdma.c.obj) + .iram1.26.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gdma.c.obj) + .iram1.25.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_new_channel + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_del_channel + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_get_channel_id + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_connect + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_disconnect + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_set_transfer_ability + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_apply_strategy + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_register_tx_event_callbacks + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_register_rx_event_callbacks + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_start + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_stop + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_append + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.gdma_reset + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_acquire_pair_handle + 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_uninstall_group.str1.4 + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_uninstall_group + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_uninstall_pair.str1.4 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_uninstall_pair + 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_del_rx_channel + 0x0000000000000000 0x8c esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_del_tx_channel + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_release_pair_handle + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_release_group_handle + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_acquire_group_handle + 0x0000000000000000 0xa2 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_install_tx_interrupt.str1.4 + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_install_tx_interrupt + 0x0000000000000000 0xce esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_install_rx_interrupt + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gdma.c.obj) + .iram1.26 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(gdma.c.obj) + .iram1.25 0x0000000000000000 0x56 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_new_channel.str1.4 + 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_new_channel + 0x0000000000000000 0x2a4 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_del_channel + 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_get_channel_id + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_connect.str1.4 + 0x0000000000000000 0x42 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_connect + 0x0000000000000000 0x19e esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_disconnect.str1.4 + 0x0000000000000000 0x49 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_disconnect + 0x0000000000000000 0xb3 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_set_transfer_ability.str1.4 + 0x0000000000000000 0x78 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_set_transfer_ability + 0x0000000000000000 0x19d esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_apply_strategy + 0x0000000000000000 0xc5 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.gdma_register_tx_event_callbacks.str1.4 + 0x0000000000000000 0x77 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_register_tx_event_callbacks + 0x0000000000000000 0x106 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_register_rx_event_callbacks + 0x0000000000000000 0x102 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_start + 0x0000000000000000 0xd1 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_stop + 0x0000000000000000 0x81 esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_append + 0x0000000000000000 0x7f esp-idf/driver/libdriver.a(gdma.c.obj) + .text.gdma_reset + 0x0000000000000000 0xab esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6282 + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6274 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6266 + 0x0000000000000000 0xa esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6258 + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6365 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6244 + 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6376 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6229 + 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6219 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6201 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6191 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6183 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6174 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6166 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__func__$6289 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__func__$6307 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gdma.c.obj) + .rodata.__FUNCTION__$6151 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gdma.c.obj) + .data.s_platform + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_frame 0x0000000000000000 0x268 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_info 0x0000000000000000 0x6032 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_abbrev 0x0000000000000000 0x556 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_loc 0x0000000000000000 0x2738 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_aranges + 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_ranges 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_line 0x0000000000000000 0x3cd4 esp-idf/driver/libdriver.a(gdma.c.obj) + .debug_str 0x0000000000000000 0x2a24 esp-idf/driver/libdriver.a(gdma.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(gdma.c.obj) + .xt.lit 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gdma.c.obj) + .xt.prop 0x0000000000000000 0xbdc esp-idf/driver/libdriver.a(gdma.c.obj) + .literal.get_ota_ops_entry + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.image_validate + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x0000000000000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x0000000000000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x0000000000000000 0x48 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x0000000000000000 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x0000000000000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x0000000000000000 0x25 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x0000000000000000 0x4e 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 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x0000000000000000 0x92 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x0000000000000000 0x5a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x0000000000000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x0000000000000000 0xe2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x0000000000000000 0xb0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x0000000000000000 0x192 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x0000000000000000 0xc4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x0000000000000000 0xe1 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 0x99 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 0x4a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x0000000000000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x0000000000000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x0000000000000000 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x0000000000000000 0x53 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 0xd7 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 0x6a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x0000000000000000 0x9b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0xe2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5027 + 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4973 + 0x0000000000000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4939 + 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) + .xt.lit 0x0000000000000000 0xd0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.prop 0x0000000000000000 0xe34 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x10 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) + .literal.bootloader_common_get_reset_reason + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x0000000000000000 0xc8 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 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x0000000000000000 0x10e 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 0x73 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) + .text.bootloader_common_get_reset_reason + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000000000000000 0x2519 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x0000000000000000 0x3ad esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000000 0x42f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x0000000000000000 0xff4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000000000000000 0x1a32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x0000000000000000 0x348 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 0x20 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) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 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 0xc2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x0000000000000000 0x6c 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) + .rodata.bootloader_common_get_partition_description.str1.4 + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x0000000000000000 0x1f8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x0000000000000000 0x310 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x0000000000000000 0x45e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x0000000000000000 0xbc7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x0000000000000000 0x15cf esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.prop 0x0000000000000000 0x2dc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.log_invalid_app_partition + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.read_otadata + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_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 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_debug_buffer + 0x0000000000000000 0x10 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 0x4a 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 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.read_otadata + 0x0000000000000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x0000000000000000 0x44 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 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x0000000000000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x0000000000000000 0x1b8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x0000000000000000 0x112 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) + .text.set_cache_and_start_app + 0x0000000000000000 0xa3 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 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x0000000000000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x0000000000000000 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x0000000000000000 0x14b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x7d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_debug_buffer.str1.4 + 0x0000000000000000 0x4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x0000000000000000 0x8e 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__$8657 + 0x0000000000000000 0x18 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 0x1c0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000000000 0xb1de esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x59a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000000000000000 0xe49 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000000 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x0000000000000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000000000 0x258d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000000000000000 0x6822 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x0000000000000000 0x864 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.should_map + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_checksum + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x0000000000000000 0x40 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 0x14 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 0x91 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.str1.4 + 0x0000000000000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash + 0x0000000000000000 0x69 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x0000000000000000 0xc4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x0000000000000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x0000000000000000 0xd5 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x0000000000000000 0x149 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x0000000000000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x0000000000000000 0x5a 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 0x45 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x0000000000000000 0x126 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 0x80 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x22 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x0000000000000000 0x45 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 0x2b5c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000000 0x3e4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000000000 0xf83 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 0xd0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000000000 0x2032 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000000000000000 0x1eca esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x0000000000000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x0000000000000000 0x8f4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_partition_table_verify + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x0000000000000000 0x163 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 0xf0b esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000000000 0x283 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000000000 0x1ef 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 0x927 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000000000000000 0x8d2 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .text.bootloader_common_get_chip_revision + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .text.bootloader_common_get_chip_ver_pkg + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_info 0x0000000000000000 0xba esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_abbrev 0x0000000000000000 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_line 0x0000000000000000 0x1fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .debug_str 0x0000000000000000 0x256 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .xt.prop 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.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 0x55 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__$3705 + 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3698 + 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 0xee1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000000000 0x269 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 0x622 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000000000000000 0x98f esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_random_enable + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .literal.bootloader_random_disable + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .rodata.bootloader_random_enable.str1.4 + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text.bootloader_random_enable + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .text.bootloader_random_disable + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_info 0x0000000000000000 0xa66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_abbrev 0x0000000000000000 0x1f3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_line 0x0000000000000000 0x38e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .debug_str 0x0000000000000000 0x700 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .literal.gdma_hal_init + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .text.gdma_hal_init + 0x0000000000000000 0x12 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_info 0x0000000000000000 0x200b esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x27b esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_line 0x0000000000000000 0x3b7 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .debug_str 0x0000000000000000 0xe56 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .xt.prop 0x0000000000000000 0x48 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .rodata.gdma_periph_signals + 0x0000000000000000 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_info 0x0000000000000000 0x42e esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_abbrev 0x0000000000000000 0xac esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_line 0x0000000000000000 0xfd esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .debug_str 0x0000000000000000 0xe76 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/libsoc.a(gdma_periph.c.obj) + .literal.mbedtls_sha256_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_free + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_starts_ret + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_starts + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_update_ret + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_finish_ret + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_finish + 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_zeroize + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_init + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_free + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts_ret + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x0000000000000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_process + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update_ret + 0x0000000000000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish_ret + 0x0000000000000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha256_padding + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x0000000000000000 0x112e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0000000000000000 0x302 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x0000000000000000 0x356 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x0000000000000000 0xa7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x0000000000000000 0x963 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.prop 0x0000000000000000 0x33c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.esp_sha_block_mode + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_dma_process + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_write_digest_state + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_read_digest_state + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_acquire_hardware + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_release_hardware + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_512_t_init_hash + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_dma + 0x0000000000000000 0x4c 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_block_mode + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma_process.str1.4 + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma_process + 0x0000000000000000 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_write_digest_state + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_read_digest_state + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_acquire_hardware + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_release_hardware + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_512_t_init_hash.str1.4 + 0x0000000000000000 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_512_t_init_hash + 0x0000000000000000 0x11d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_dma.str1.4 + 0x0000000000000000 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_dma + 0x0000000000000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000000000000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x0000000000000000 0x1e3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0000000000000000 0x425 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x0000000000000000 0x959 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x0000000000000000 0x1145 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x0000000000000000 0x1970 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.prop 0x0000000000000000 0x39c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_dma_start + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .text.esp_sha_dma_start + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_info 0x0000000000000000 0xb0c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_abbrev 0x0000000000000000 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_loc 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_line 0x0000000000000000 0x44c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .debug_str 0x0000000000000000 0x7ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .literal.esp_crypto_shared_dma_init_extmem + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .literal.crypto_shared_gdma_init + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .literal.esp_crypto_shared_gdma_start + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .literal.esp_crypto_shared_gdma_free + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .rodata 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_dma_init_extmem + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .rodata.crypto_shared_gdma_init.str1.4 + 0x0000000000000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.crypto_shared_gdma_init + 0x0000000000000000 0xe6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_start + 0x0000000000000000 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .text.esp_crypto_shared_gdma_free + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss.tx_channel + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .bss.rx_channel + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_info 0x0000000000000000 0x3010 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_abbrev 0x0000000000000000 0x43c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_loc 0x0000000000000000 0x1d1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_line 0x0000000000000000 0xae1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .debug_str 0x0000000000000000 0x1f75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xt.prop 0x0000000000000000 0x1ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .literal.sha_hal_wait_idle + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_hash_block + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_hash_dma + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_read_digest + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_write_digest + 0x0000000000000000 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + .literal.sha_hal_sha512_init_hash + 0x0000000000000000 0x14 esp-idf/hal/libhal.a(sha_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.sha_hal_wait_idle + 0x0000000000000000 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_hash_block + 0x0000000000000000 0x54 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_hash_dma + 0x0000000000000000 0x40 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_read_digest + 0x0000000000000000 0x5b esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_write_digest + 0x0000000000000000 0x4c esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_sha512_init_hash + 0x0000000000000000 0x32 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x0000000000000000 0x10c1 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x32e esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x0000000000000000 0x5ea esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x0000000000000000 0x911 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_str 0x0000000000000000 0x8e0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.prop 0x0000000000000000 0x2a0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .text.esp_dport_access_read_buffer + 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_info 0x0000000000000000 0x9b8 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_abbrev 0x0000000000000000 0x1c1 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_loc 0x0000000000000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_line 0x0000000000000000 0x3c2 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .debug_str 0x0000000000000000 0x668 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .xt.prop 0x0000000000000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .literal.esp_crypto_sha_aes_lock_acquire + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_sha_aes_lock_release + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_mpi_lock_acquire + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_mpi_lock_release + 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_acquire + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_release + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_acquire + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_release + 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss.s_crypto_mpi_lock + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss.s_crypto_sha_aes_lock + 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_info 0x0000000000000000 0x161 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x0000000000000000 0xcd esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_line 0x0000000000000000 0x1e6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_str 0x0000000000000000 0x265 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xt.prop 0x0000000000000000 0xf0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .text 0x0000000000000000 0x8 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .text 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x0000000000000000 0xc /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .text 0x0000000000000000 0x56 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_info 0x0000000000000000 0xb01 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_loc 0x0000000000000000 0x2c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line 0x0000000000000000 0x3ff /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .debug_str 0x0000000000000000 0x70a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .text 0x0000000000000000 0x2aa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .xt.prop 0x0000000000000000 0x1bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x2ae /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .xt.prop 0x0000000000000000 0x15c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .text 0x0000000000000000 0x26e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .xt.prop 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x272 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .xt.prop 0x0000000000000000 0x15c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x12 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_info 0x0000000000000000 0x976 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_line 0x0000000000000000 0x259 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .debug_str 0x0000000000000000 0x5ee /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .xt.prop 0x0000000000000000 0x21c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .xt.prop 0x0000000000000000 0x210 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .xt.prop 0x0000000000000000 0x9c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .text 0x0000000000000000 0x5c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_info 0x0000000000000000 0xa9b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_abbrev 0x0000000000000000 0x249 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_loc 0x0000000000000000 0x74 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_line 0x0000000000000000 0x312 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .debug_str 0x0000000000000000 0x642 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .literal 0x0000000000000000 0x2c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .text 0x0000000000000000 0xb0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_info 0x0000000000000000 0xdb4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_abbrev 0x0000000000000000 0x29f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_loc 0x0000000000000000 0xa6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_line 0x0000000000000000 0x470 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .debug_str 0x0000000000000000 0x826 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .xt.prop 0x0000000000000000 0x9c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .xt.prop 0x0000000000000000 0x2a0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .xt.prop 0x0000000000000000 0x144 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .xt.prop 0x0000000000000000 0x204 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .xt.prop 0x0000000000000000 0xb4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .literal 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .text 0x0000000000000000 0xdc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_info 0x0000000000000000 0xe03 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_abbrev 0x0000000000000000 0x2e1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_loc 0x0000000000000000 0x10d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_line 0x0000000000000000 0x4bb /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .debug_str 0x0000000000000000 0x826 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x915 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x169 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x137 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x5d2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_info 0x0000000000000000 0xa11 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_abbrev 0x0000000000000000 0x23c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_loc 0x0000000000000000 0x104 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_line 0x0000000000000000 0x337 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .debug_str 0x0000000000000000 0x601 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .xt.prop 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .literal 0x0000000000000000 0x2c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .text 0x0000000000000000 0x27d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_info 0x0000000000000000 0xc50 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_abbrev 0x0000000000000000 0x234 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_loc 0x0000000000000000 0x1ba /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_line 0x0000000000000000 0x87c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .debug_str 0x0000000000000000 0x724 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .xt.prop 0x0000000000000000 0x234 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .xt.prop 0x0000000000000000 0x114 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .text 0x0000000000000000 0x1b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_info 0x0000000000000000 0x9ab /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_abbrev 0x0000000000000000 0x1c3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_loc 0x0000000000000000 0xcd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_line 0x0000000000000000 0x2aa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .debug_str 0x0000000000000000 0x5f2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .text 0x0000000000000000 0x52 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x9ca /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x1af /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_loc 0x0000000000000000 0x17f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x351 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0x5e2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .xt.prop 0x0000000000000000 0x84 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .literal 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x135 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x36f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0x11a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .xt.prop 0x0000000000000000 0x15c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x3f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_info 0x0000000000000000 0xef6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_abbrev 0x0000000000000000 0x1d1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_loc 0x0000000000000000 0x1d1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_line 0x0000000000000000 0x3b8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .debug_str 0x0000000000000000 0x912 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .literal 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x74 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x1a6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0x11a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .xt.prop 0x0000000000000000 0xd8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .rodata 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_info 0x0000000000000000 0x978 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_abbrev 0x0000000000000000 0x182 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_line 0x0000000000000000 0x230 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .debug_str 0x0000000000000000 0x603 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .xt.prop 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .xt.prop 0x0000000000000000 0x9c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .literal 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .text 0x0000000000000000 0x364 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_info 0x0000000000000000 0x1186 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_abbrev 0x0000000000000000 0x35c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_loc 0x0000000000000000 0x96f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_line 0x0000000000000000 0xb19 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .debug_str 0x0000000000000000 0x646 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .xt.prop 0x0000000000000000 0x3c0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .xt.prop 0x0000000000000000 0x114 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .xt.prop 0x0000000000000000 0x144 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .xt.prop 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0x23 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_info 0x0000000000000000 0x96b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_abbrev 0x0000000000000000 0x1af /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_loc 0x0000000000000000 0xbc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_line 0x0000000000000000 0x2a9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .debug_str 0x0000000000000000 0x5db /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .text 0x0000000000000000 0x123 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_line 0x0000000000000000 0x315 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .debug_str 0x0000000000000000 0x11a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .xt.prop 0x0000000000000000 0x120 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x90 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_line 0x0000000000000000 0x1e2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .debug_str 0x0000000000000000 0x11a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .xt.prop 0x0000000000000000 0x114 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x2b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0x979 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_loc 0x0000000000000000 0x83 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0x304 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0x5e4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .xt.prop 0x0000000000000000 0x90 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x2e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_info 0x0000000000000000 0xa2a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_abbrev 0x0000000000000000 0x239 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_loc 0x0000000000000000 0x3a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_line 0x0000000000000000 0x291 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .debug_str 0x0000000000000000 0x63a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .text 0x0000000000000000 0x52 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_info 0x0000000000000000 0x9ce /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_abbrev 0x0000000000000000 0x1ed /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_loc 0x0000000000000000 0x14f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_line 0x0000000000000000 0x39e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .debug_str 0x0000000000000000 0x5f0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .xt.prop 0x0000000000000000 0xa8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .text 0x0000000000000000 0x46 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_info 0x0000000000000000 0x9a1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_loc 0x0000000000000000 0x1b3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_line 0x0000000000000000 0x338 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .debug_str 0x0000000000000000 0x5e4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .xt.prop 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x63 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x182 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0x11a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x3e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_info 0x0000000000000000 0x96d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_abbrev 0x0000000000000000 0x194 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_loc 0x0000000000000000 0xd6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_line 0x0000000000000000 0x2e8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .debug_str 0x0000000000000000 0x5e4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x113 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x309 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0x11b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .xt.prop 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x36 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0x979 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_loc 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x322 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0x5e2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .xt.prop 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .xt.prop 0x0000000000000000 0x2820 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .text 0x0000000000000000 0x16a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_info 0x0000000000000000 0xb6d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_abbrev 0x0000000000000000 0x207 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_loc 0x0000000000000000 0x1ac /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_ranges 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_line 0x0000000000000000 0x61f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .debug_str 0x0000000000000000 0x6c3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .xt.prop 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .text 0x0000000000000000 0x1e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_info 0x0000000000000000 0x9e2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_abbrev 0x0000000000000000 0x1c0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_line 0x0000000000000000 0x264 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .debug_str 0x0000000000000000 0x65f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .literal 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .text 0x0000000000000000 0x31 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_info 0x0000000000000000 0xa07 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_abbrev 0x0000000000000000 0x1c4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_line 0x0000000000000000 0x270 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .debug_str 0x0000000000000000 0x644 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .literal 0x0000000000000000 0x7c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x33e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .bss 0x0000000000000000 0x1a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .rodata.str1.1 + 0x0000000000000000 0x4e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_info 0x0000000000000000 0xe77 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_abbrev 0x0000000000000000 0x262 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_loc 0x0000000000000000 0x1be /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_line 0x0000000000000000 0xb54 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .debug_str 0x0000000000000000 0x739 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .xt.prop 0x0000000000000000 0x1d4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .bss 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .rodata.str1.1 + 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_info 0x0000000000000000 0x95f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_abbrev 0x0000000000000000 0x17c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_line 0x0000000000000000 0x1ab /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .debug_str 0x0000000000000000 0x5ec /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .xt.prop 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .literal 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .text 0x0000000000000000 0x74 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .rodata.str1.1 + 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_info 0x0000000000000000 0xa76 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_abbrev 0x0000000000000000 0x240 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_loc 0x0000000000000000 0x195 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_line 0x0000000000000000 0x457 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .debug_str 0x0000000000000000 0x61c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .xt.prop 0x0000000000000000 0x84 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .xt.prop 0x0000000000000000 0x21c0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .xt.prop 0x0000000000000000 0x291c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .xt.prop 0x0000000000000000 0xf0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .xt.prop 0x0000000000000000 0x84c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .xt.prop 0x0000000000000000 0x108 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .text 0x0000000000000000 0x94 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_info 0x0000000000000000 0xaaa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_abbrev 0x0000000000000000 0x236 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_loc 0x0000000000000000 0x124 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_line 0x0000000000000000 0x429 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .debug_str 0x0000000000000000 0x63d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .xt.prop 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .text 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_info 0x0000000000000000 0xa69 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_abbrev 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_line 0x0000000000000000 0x25d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .debug_str 0x0000000000000000 0x67f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .literal 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x1ae /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_info 0x0000000000000000 0xb34 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_abbrev 0x0000000000000000 0x1fa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_loc 0x0000000000000000 0x198 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_line 0x0000000000000000 0x668 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .debug_str 0x0000000000000000 0x691 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .xt.prop 0x0000000000000000 0x90 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .xt.prop 0x0000000000000000 0x738 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .text 0x0000000000000000 0xc2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_info 0x0000000000000000 0xd0b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_abbrev 0x0000000000000000 0x27c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_loc 0x0000000000000000 0x99 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_line 0x0000000000000000 0x4d8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .debug_str 0x0000000000000000 0x7a3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .literal 0x0000000000000000 0x154 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .text 0x0000000000000000 0x242 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .rodata.str1.1 + 0x0000000000000000 0x697 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .rodata 0x0000000000000000 0x23c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_info 0x0000000000000000 0xac2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_abbrev 0x0000000000000000 0x233 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_loc 0x0000000000000000 0x63c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_line 0x0000000000000000 0xc7a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .debug_str 0x0000000000000000 0x654 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .xt.prop 0x0000000000000000 0x81c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .text 0x0000000000000000 0x136 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_info 0x0000000000000000 0x11d7 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_abbrev 0x0000000000000000 0x2dd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_loc 0x0000000000000000 0x3a2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_line 0x0000000000000000 0x761 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .debug_str 0x0000000000000000 0x9ad /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .xt.prop 0x0000000000000000 0x198 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .xt.prop 0x0000000000000000 0x2154 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .literal 0x0000000000000000 0xc8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x210d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .rodata 0x0000000000000000 0x22 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_frame 0x0000000000000000 0x8c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_info 0x0000000000000000 0x27d3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_abbrev 0x0000000000000000 0x469 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_loc 0x0000000000000000 0x20cc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_ranges 0x0000000000000000 0xb8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_line 0x0000000000000000 0x4153 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .debug_str 0x0000000000000000 0xd24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .xt.prop 0x0000000000000000 0x1d7c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x7 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_info 0x0000000000000000 0x8b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_abbrev 0x0000000000000000 0x76 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_line 0x0000000000000000 0xd5 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .debug_str 0x0000000000000000 0x165 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .literal 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x1e0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_info 0x0000000000000000 0xe6a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_abbrev 0x0000000000000000 0x32e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_loc 0x0000000000000000 0x2de /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_line 0x0000000000000000 0x88e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .debug_str 0x0000000000000000 0x807 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .xt.prop 0x0000000000000000 0x198 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .text 0x0000000000000000 0x1e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_info 0x0000000000000000 0x99e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_abbrev 0x0000000000000000 0x1d1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_line 0x0000000000000000 0x26f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .debug_str 0x0000000000000000 0x664 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .text 0x0000000000000000 0x11 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_info 0x0000000000000000 0xc7 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_abbrev 0x0000000000000000 0x95 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_line 0x0000000000000000 0x1ce /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .debug_str 0x0000000000000000 0x1d7 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .text 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_info 0x0000000000000000 0xecd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_abbrev 0x0000000000000000 0x1bd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_line 0x0000000000000000 0x31f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .debug_str 0x0000000000000000 0x90c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .literal 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .text 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .xt.prop 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .text 0x0000000000000000 0x50 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .rodata.str1.1 + 0x0000000000000000 0x1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_info 0x0000000000000000 0x1034 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x0000000000000000 0x23e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_loc 0x0000000000000000 0x92 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_line 0x0000000000000000 0x3cd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .debug_str 0x0000000000000000 0x984 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .literal 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .text 0x0000000000000000 0x88 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_info 0x0000000000000000 0xbcf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_abbrev 0x0000000000000000 0x1f1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_loc 0x0000000000000000 0x178 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_line 0x0000000000000000 0x462 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .debug_str 0x0000000000000000 0x73e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .xt.prop 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .literal 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .text 0x0000000000000000 0x15e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_info 0x0000000000000000 0x1250 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_abbrev 0x0000000000000000 0x318 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_loc 0x0000000000000000 0x3ed /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_line 0x0000000000000000 0x7f2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .debug_str 0x0000000000000000 0x9b0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .xt.prop 0x0000000000000000 0x1bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .literal 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .text 0x0000000000000000 0x1c0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_info 0x0000000000000000 0x11f1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_abbrev 0x0000000000000000 0x2f2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_loc 0x0000000000000000 0x490 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_line 0x0000000000000000 0x7ff /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .debug_str 0x0000000000000000 0x9ad /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .xt.prop 0x0000000000000000 0x1bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .text 0x0000000000000000 0x1b4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_info 0x0000000000000000 0x11f1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_abbrev 0x0000000000000000 0x2f2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_loc 0x0000000000000000 0x462 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_line 0x0000000000000000 0x7e4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .debug_str 0x0000000000000000 0x9b2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .xt.prop 0x0000000000000000 0x1bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x0000000000000000 0x312 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x0000000000000000 0x70c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x0000000000000000 0x109 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .xt.prop 0x0000000000000000 0x420 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .text 0x0000000000000000 0x1ff /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x0000000000000000 0x4d3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x0000000000000000 0x109 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .xt.prop 0x0000000000000000 0x228 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .text 0x0000000000000000 0x213 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x0000000000000000 0x4fc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x0000000000000000 0x109 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .xt.prop 0x0000000000000000 0x264 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .literal 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .text 0x0000000000000000 0x176 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line 0x0000000000000000 0x3ca /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .debug_str 0x0000000000000000 0x109 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .xt.prop 0x0000000000000000 0x288 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x0000000000000000 0x142 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x0000000000000000 0x109 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x3d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x0000000000000000 0x124 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x0000000000000000 0x109 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .xt.prop 0x0000000000000000 0x54 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .ctors 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .xt.lit 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .xt.prop 0x0000000000000000 0x84 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x0000000040374000 0x0000000000046000 xr +iram0_2_seg 0x0000000042000020 0x00000000007fffe0 xr +dram0_0_seg 0x000000003fc88000 0x0000000000042000 rw +drom0_0_seg 0x000000003c000020 0x00000000007fffe0 r +rtc_iram_seg 0x00000000600fe000 0x0000000000002000 xrw +rtc_data_seg 0x00000000600fe000 0x0000000000002000 rw +rtc_slow_seg 0x0000000050000000 0x0000000000002000 rw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +LOAD CMakeFiles/hello-world.elf.dir/project_elf_src_esp32s3.c.obj +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/xtensa/libxtensa.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/mdns/libmdns.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/usb/libusb.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/esp_hid/libesp_hid.a +LOAD esp-idf/esp_lcd/libesp_lcd.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/usb/libusb.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/xtensa/libxtensa.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/xtensa/libxtensa.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/xtensa/libxtensa.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/xtensa/libxtensa.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_ipc/libesp_ipc.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/esp_phy/libesp_phy.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/vfs/libvfs.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.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/xtensa/libxtensa.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.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/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32s3/libwapi.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32s3\libphy.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32s3\libphy.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32s3\libphy.a +LOAD /home/xy/esp/esp-idf/components/esp_phy/lib/esp32s3\libbtbb.a +LOAD /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a +LOAD esp-idf/newlib/libnewlib.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcov.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcov.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libstdc++.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libm.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libnosys.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o +LOAD /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + 0x000000003fc924d0 _static_data_end = _bss_end + 0x0000000040000000 _heap_end = 0x40000000 + 0x00000000600fe000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x0000000000000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) + 0x0000000040378000 _diram_i_start = 0x40378000 + +.rtc.text 0x00000000600fe000 0x0 + 0x00000000600fe000 . = ALIGN (0x4) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x00000000600fe000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x00000000600fe000 0x0 + 0x00000000600fe000 _rtc_dummy_start = ABSOLUTE (.) + 0x00000000600fe000 _rtc_fast_start = ABSOLUTE (.) + 0x0000000000000000 . = SIZEOF (.rtc.text) + 0x00000000600fe000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x00000000600fe000 0x0 + 0x00000000600fe000 . = ALIGN (0x4) + 0x00000000600fe000 _rtc_force_fast_start = ABSOLUTE (.) + 0x00000000600fe000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x00000000600fe000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x00000000600fe000 . = ALIGN (0x4) + 0x00000000600fe000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x0000000050000000 0x10 + 0x0000000050000000 _rtc_data_start = ABSOLUTE (.) + 0x0000000050000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x0000000050000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + .rtc.data.0 0x0000000050000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) + 0x0000000050000010 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x0000000050000010 0x0 + 0x0000000050000010 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x0000000050000010 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x0000000050000010 0x0 + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x0000000050000010 0x0 + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x0000000050000010 . = ALIGN (0x4) + 0x0000000050000010 _rtc_force_slow_end = ABSOLUTE (.) + 0x0000000000000010 _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 0x0000000040374000 0x403 + 0x0000000040374000 _iram_start = ABSOLUTE (.) + 0x0000000040374000 _vector_table = ABSOLUTE (.) + 0x0000000000000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x0000000040374000 0x16a esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374000 _WindowOverflow4 + 0x0000000040374040 _WindowUnderflow4 + 0x0000000040374050 _xt_alloca_exc + 0x0000000040374080 _WindowOverflow8 + 0x00000000403740c0 _WindowUnderflow8 + 0x0000000040374100 _WindowOverflow12 + 0x0000000040374140 _WindowUnderflow12 + 0x0000000000000180 . = 0x180 + *fill* 0x000000004037416a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x0000000040374180 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374180 _Level2Vector + 0x00000000000001c0 . = 0x1c0 + *fill* 0x0000000040374186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x00000000403741c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000403741c0 _Level3Vector + 0x0000000000000200 . = 0x200 + *fill* 0x00000000403741c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x0000000040374200 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374200 _Level4Vector + 0x0000000000000240 . = 0x240 + *fill* 0x0000000040374206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x0000000040374240 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374240 _Level5Vector + 0x0000000000000280 . = 0x280 + *fill* 0x0000000040374246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x0000000040374280 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374280 _DebugExceptionVector + 0x00000000000002c0 . = 0x2c0 + *fill* 0x0000000040374286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x00000000403742c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000403742c0 _NMIExceptionVector + 0x0000000000000300 . = 0x300 + *fill* 0x00000000403742c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x0000000040374300 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374300 _KernelExceptionVector + 0x0000000000000340 . = 0x340 + *fill* 0x0000000040374306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x0000000040374340 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040374340 _UserExceptionVector + 0x00000000000003c0 . = 0x3c0 + *fill* 0x0000000040374346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x00000000403743c0 0xf esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000403743c0 _DoubleExceptionVector + 0x0000000000000400 . = 0x400 + *fill* 0x00000000403743cf 0x31 + 0x0000000040374400 _invalid_pc_placeholder = ABSOLUTE (.) + *(.*Vector.literal) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x0000000040374400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x0000000040374400 0x3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + 0x0000000040374400 _init + 0x0000000040374403 _init_end = ABSOLUTE (.) + +.iram0.text 0x0000000040374404 0xb2bf + 0x0000000040374404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.1.literal + 0x0000000040374404 0xc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .iram1.26.literal + 0x0000000040374410 0x44 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4c (size before relaxing) + .iram1.27.literal + 0x0000000040374454 0x74 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb8 (size before relaxing) + .iram1.literal + 0x00000000403744c8 0xc esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .iram1.25.literal + 0x00000000403744d4 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.30.literal + 0x00000000403744d8 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .iram1.27.literal + 0x00000000403744dc 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .iram1.26.literal + 0x00000000403744e0 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.25.literal + 0x00000000403744ec 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.26.literal + 0x00000000403744ec 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.27.literal + 0x00000000403744f0 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x00000000403744f0 0x50 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0xb0 (size before relaxing) + .iram1.23.literal + 0x0000000040374540 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.24.literal + 0x0000000040374554 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x0000000040374554 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.25.literal + 0x0000000040374584 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x68 (size before relaxing) + .iram1.26.literal + 0x000000004037459c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.23.literal + 0x000000004037459c 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .iram1.0.literal + 0x00000000403745a0 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .iram1.31.literal + 0x00000000403745a4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.24.literal + 0x00000000403745a8 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x38 (size before relaxing) + .iram1.25.literal + 0x00000000403745d4 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x2c (size before relaxing) + .iram1.26.literal + 0x00000000403745e0 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.32.literal + 0x00000000403745f0 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.33.literal + 0x00000000403745fc 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x58 (size before relaxing) + .iram1.27.literal + 0x0000000040374608 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x0000000040374608 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x0000000040374608 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x0000000040374608 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.7.literal + 0x000000004037460c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .iram1.2.literal + 0x0000000040374610 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.25.literal + 0x0000000040374618 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.29.literal + 0x000000004037461c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.30.literal + 0x0000000040374628 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x2c (size before relaxing) + .iram1.27.literal + 0x0000000040374628 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .iram1.28.literal + 0x0000000040374630 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.26.literal + 0x0000000040374640 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.27.literal + 0x0000000040374648 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.28.literal + 0x000000004037464c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x10 (size before relaxing) + .iram1.23.literal + 0x0000000040374650 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.31.literal + 0x0000000040374654 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.28.literal + 0x0000000040374658 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.32.literal + 0x0000000040374668 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.33.literal + 0x0000000040374668 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x000000004037466c 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.27.literal + 0x0000000040374670 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .iram1.24.literal + 0x0000000040374678 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x14 (size before relaxing) + .iram1.25.literal + 0x0000000040374678 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x28 (size before relaxing) + .iram1.26.literal + 0x0000000040374680 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.27.literal + 0x0000000040374684 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x0000000040374684 0x40 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x60 (size before relaxing) + .iram1.25.literal + 0x00000000403746c4 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x14 (size before relaxing) + .iram1.25.literal + 0x00000000403746cc 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.41.literal + 0x00000000403746d0 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.29.literal + 0x00000000403746dc 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.34.literal + 0x00000000403746e4 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.28.literal + 0x00000000403746ec 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.30.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.31.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.32.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.33.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.35.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.36.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.37.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.38.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.39.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.40.literal + 0x00000000403746f4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.42.literal + 0x00000000403746f4 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.43.literal + 0x00000000403746fc 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.44.literal + 0x0000000040374700 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.45.literal + 0x0000000040374700 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.46.literal + 0x0000000040374700 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.47.literal + 0x0000000040374700 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040374700 0x8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0xc (size before relaxing) + .iram1.26.literal + 0x0000000040374708 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .iram1.25.literal + 0x0000000040374714 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.25.literal + 0x0000000040374714 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x34 (size before relaxing) + .iram1.30.literal + 0x0000000040374734 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .iram1.literal + 0x0000000040374738 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.2.literal + 0x0000000040374758 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .iram1.33.literal + 0x0000000040374788 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .iram1.27.literal + 0x000000004037478c 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.32.literal + 0x0000000040374798 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .iram1.28.literal + 0x000000004037479c 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x70 (size before relaxing) + .iram1.29.literal + 0x00000000403747cc 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.34.literal + 0x00000000403747dc 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.38.literal + 0x00000000403747e0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.32.literal + 0x00000000403747e0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xc (size before relaxing) + .iram1.26.literal + 0x00000000403747e4 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x14 (size before relaxing) + .iram1.27.literal + 0x00000000403747ec 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.35.literal + 0x00000000403747f4 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x14 (size before relaxing) + .iram1.29.literal + 0x00000000403747f4 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x5c (size before relaxing) + .iram1.28.literal + 0x000000004037481c 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.30.literal + 0x0000000040374824 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x34 (size before relaxing) + .iram1.36.literal + 0x0000000040374830 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.36.literal + 0x0000000040374834 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .iram1.29.literal + 0x0000000040374834 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.31.literal + 0x0000000040374838 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .iram1.27.literal + 0x0000000040374838 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.31.literal + 0x000000004037483c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x20 (size before relaxing) + .iram1.29.literal + 0x000000004037484c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.32.literal + 0x0000000040374850 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.28.literal + 0x0000000040374854 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x58 (size before relaxing) + .iram1.29.literal + 0x000000004037486c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.30.literal + 0x0000000040374870 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.33.literal + 0x0000000040374870 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.39.literal + 0x0000000040374870 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.38.literal + 0x0000000040374870 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.37.literal + 0x0000000040374874 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.36.literal + 0x0000000040374874 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.34.literal + 0x0000000040374874 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.35.literal + 0x0000000040374874 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x1c (size before relaxing) + .iram1.40.literal + 0x0000000040374888 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3.literal + 0x000000004037488c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x000000004037488c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x0000000040374890 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x8 (size before relaxing) + .iram1.25.literal + 0x0000000040374890 0xc esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x1c (size before relaxing) + .iram1.26.literal + 0x000000004037489c 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.27.literal + 0x00000000403748ac 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.29.literal + 0x00000000403748ac 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.literal + 0x00000000403748ac 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x4 (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x00000000403748ac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x00000000403748b4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x00000000403748b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_32k_enable_internal + 0x00000000403748b8 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_32k_enable + 0x00000000403748cc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x00000000403748dc 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x00000000403748dc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_slow_freq_set + 0x00000000403748e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_slow_freq_get + 0x00000000403748f0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.wait_dig_dbias_valid + 0x00000000403748f0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x00000000403748f0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_freq_set + 0x00000000403748f8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x00000000403748f8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x0000000040374900 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x000000004037490c 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 + 0x000000004037490c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x0000000040374914 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040374918 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3c (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x000000004037492c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x0000000040374930 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x0000000040374930 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000040374930 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_apb_freq_get + 0x0000000040374930 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_sleep_pu + 0x0000000040374930 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cal_internal + 0x0000000040374958 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x48 (size before relaxing) + .literal.rtc_clk_cal + 0x000000004037497c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xc (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x000000004037497c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.rtc_time_get + 0x000000004037497c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x10 (size before relaxing) + .literal.prvGetFreeSize + 0x0000000040374988 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10 (size before relaxing) + .literal.prvReceiveGeneric + 0x0000000040374994 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x38 (size before relaxing) + .literal.xRingbufferSend + 0x00000000403749a0 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3c (size before relaxing) + .literal.xRingbufferReceive + 0x00000000403749ac 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.vRingbufferReturnItem + 0x00000000403749b0 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x24 (size before relaxing) + .literal.esp_error_check_failed_print + 0x00000000403749b8 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x2c (size before relaxing) + .literal._esp_error_check_failed + 0x00000000403749d0 0x4 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0xc (size before relaxing) + .literal.esp_system_abort + 0x00000000403749d4 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal 0x00000000403749d8 0x10 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x4c (size before relaxing) + .literal 0x00000000403749e8 0x4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x14 (size before relaxing) + .literal.vPortSetupTimer + 0x00000000403749ec 0x24 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x50 (size before relaxing) + .literal.xPortSysTickHandler + 0x0000000040374a10 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x8 (size before relaxing) + .literal.prvIsQueueEmpty + 0x0000000040374a10 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.prvCopyDataToQueue + 0x0000000040374a10 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x0000000040374a10 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.prvCopyDataFromQueue + 0x0000000040374a28 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvUnlockQueue + 0x0000000040374a28 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGenericReset + 0x0000000040374a28 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3c (size before relaxing) + .literal.prvInitialiseNewQueue + 0x0000000040374a40 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x0000000040374a40 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGenericCreate + 0x0000000040374a58 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x0000000040374a64 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGenericSend + 0x0000000040374a64 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x98 (size before relaxing) + .literal.prvInitialiseMutex + 0x0000000040374a78 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x0000000040374a78 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x0000000040374a78 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x0000000040374a78 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGiveFromISR + 0x0000000040374a80 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x0000000040374a90 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xa0 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x0000000040374a9c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x0000000040374aa0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .literal.vQueueDelete + 0x0000000040374aa8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x0000000040374aac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvDeleteTLS + 0x0000000040374ab4 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvInitialiseNewTask + 0x0000000040374ac4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x0000000040374ac4 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.prvDeleteTCB + 0x0000000040374ae0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x0000000040374af0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x0000000040374b04 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvIdleTask + 0x0000000040374b08 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.taskYIELD_OTHER_CORE + 0x0000000040374b0c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x0000000040374b0c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x0000000040374b18 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskDelay + 0x0000000040374b18 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.vTaskSuspendAll + 0x0000000040374b24 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetTickCount + 0x0000000040374b24 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x0000000040374b24 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCPU + 0x0000000040374b24 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.xTaskIncrementTick + 0x0000000040374b3c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x64 (size before relaxing) + .literal.xTaskResumeAll + 0x0000000040374b54 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.vTaskSwitchContext + 0x0000000040374b68 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x74 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x0000000040374b9c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x0000000040374ba8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x0000000040374bb4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x0000000040374bb4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.vTaskMissedYield + 0x0000000040374bc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x0000000040374bc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x0000000040374bc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x0000000040374bc8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.__getreent + 0x0000000040374bd0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.pcTaskGetName + 0x0000000040374bd0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.xTaskGetAffinity + 0x0000000040374bd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.uxTaskGetStackHighWaterMark + 0x0000000040374bd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCPU + 0x0000000040374bd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x0000000040374bd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskDelete + 0x0000000040374bd8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.xTaskPriorityInherit + 0x0000000040374be0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x0000000040374be0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x0000000040374bf4 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x0000000040374c04 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskNotifyTake + 0x0000000040374c04 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.vTaskNotifyGiveFromISR + 0x0000000040374c04 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.vTaskStartScheduler + 0x0000000040374c18 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.vPortTaskWrapper + 0x0000000040374c2c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.pxPortInitialiseStack + 0x0000000040374c34 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.xPortStartScheduler + 0x0000000040374c58 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x10 (size before relaxing) + .literal.vPortYieldOtherCore + 0x0000000040374c58 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vPortReleaseTaskMPUSettings + 0x0000000040374c58 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortInIsrContext + 0x0000000040374c58 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.vPortEnterCritical + 0x0000000040374c58 0x20 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3c (size before relaxing) + .literal.vPortExitCritical + 0x0000000040374c78 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x0000000040374c84 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.esp_startup_start_app_common + 0x0000000040374c90 0x20 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x2c (size before relaxing) + .literal.soc_hal_stall_core + 0x0000000040374cb0 0x10 esp-idf/hal/libhal.a(soc_hal.c.obj) + 0x14 (size before relaxing) + .literal.soc_hal_unstall_core + 0x0000000040374cc0 0x0 esp-idf/hal/libhal.a(soc_hal.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x0000000040374cc0 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_disable + 0x0000000040374cc8 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x0000000040374cc8 0x10 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x0000000040374cd8 0x8 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_destroy + 0x0000000040374ce0 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_hal_gpspi_device_config + 0x0000000040374ce4 0x10 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_gpspi_configure_host_io_mode + 0x0000000040374cf4 0x14 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x4c (size before relaxing) + .literal.spi_flash_hal_gpspi_common_command + 0x0000000040374d08 0xc esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_gpspi_read + 0x0000000040374d14 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x0000000040374d14 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x50 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x0000000040374d1c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_read + 0x0000000040374d1c 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x0000000040374d1c 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_erase_sector + 0x0000000040374d20 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x0000000040374d24 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_program_page + 0x0000000040374d24 0x4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_read_suspend + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_setup_auto_suspend_mode + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_setup_auto_resume_mode + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_disable_auto_suspend_mode + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_disable_auto_resume_mode + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_device_config + 0x0000000040374d28 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_get_clk_en_reg + 0x0000000040374d28 0x10 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .literal.periph_ll_get_rst_en_reg + 0x0000000040374d38 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x10 (size before relaxing) + .literal.systimer_hal_init + 0x0000000040374d3c 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x18 (size before relaxing) + .literal.systimer_hal_get_counter_value + 0x0000000040374d40 0x4 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_set_alarm_target + 0x0000000040374d44 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_set_alarm_period + 0x0000000040374d44 0x10 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x18 (size before relaxing) + .literal.systimer_hal_counter_value_advance + 0x0000000040374d54 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0xc (size before relaxing) + .literal.systimer_hal_select_alarm_mode + 0x0000000040374d54 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x8 (size before relaxing) + .literal.systimer_hal_connect_alarm_counter + 0x0000000040374d54 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x0000000040374d54 0x40 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x48 (size before relaxing) + .literal.wdt_hal_config_stage + 0x0000000040374d94 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x24 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x0000000040374d94 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_enable + 0x0000000040374d94 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_disable + 0x0000000040374d94 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_handle_intr + 0x0000000040374d94 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_feed + 0x0000000040374d94 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_set_flashboot_en + 0x0000000040374d94 0x4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.default_walker + 0x0000000040374d98 0x10 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_walk_pool + 0x0000000040374da8 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .literal.tlsf_add_pool + 0x0000000040374dac 0x20 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x3c (size before relaxing) + .literal.tlsf_create + 0x0000000040374dcc 0x4 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_get_pool + 0x0000000040374dd0 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_create_with_pool + 0x0000000040374dd0 0x0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_malloc + 0x0000000040374dd0 0x40 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x7c (size before relaxing) + .literal.tlsf_free + 0x0000000040374e10 0x28 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x80 (size before relaxing) + .literal.tlsf_realloc + 0x0000000040374e38 0xc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0xac (size before relaxing) + .literal.assert_valid_block + 0x0000000040374e44 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x0000000040374e48 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_register_impl + 0x0000000040374e48 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x20 (size before relaxing) + .literal.multi_heap_malloc_impl + 0x0000000040374e54 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_free_impl + 0x0000000040374e54 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x0000000040374e54 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.multi_heap_get_info_impl + 0x0000000040374e5c 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x20 (size before relaxing) + .literal.esp_log_write + 0x0000000040374e60 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_early_timestamp + 0x0000000040374e64 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x0000000040374e64 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x0000000040374e68 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_timestamp + 0x0000000040374e68 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.abort + 0x0000000040374e6c 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x24 (size before relaxing) + .literal.malloc + 0x0000000040374e7c 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x0000000040374e7c 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x0000000040374e7c 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x0000000040374e7c 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x0000000040374e7c 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x0000000040374e7c 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x0000000040374e7c 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x0000000040374e80 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x0000000040374e80 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + .literal.memspi_host_flush_cache + 0x0000000040374e90 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_erase_sector + 0x0000000040374e90 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.memspi_host_erase_block + 0x0000000040374e9c 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.memspi_host_program_page + 0x0000000040374ea0 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x14 (size before relaxing) + .literal.memspi_host_init_pointers + 0x0000000040374ea8 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.spi_flash_chip_boya_probe + 0x0000000040374eb4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x0000000040374eb8 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 + 0x0000000040374eb8 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 + 0x0000000040374ec8 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 + 0x0000000040374ec8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x0000000040374ecc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040374ed4 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 + 0x0000000040374ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x0000000040374ed4 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 + 0x0000000040374ed4 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x0000000040374ee0 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 + 0x0000000040374ee0 0x8 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 + 0x0000000040374ee8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x0000000040374ef0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x0000000040374ef4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040374ef8 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 + 0x0000000040374ef8 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 + 0x0000000040374ef8 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 + 0x0000000040374ef8 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 + 0x0000000040374ef8 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 + 0x0000000040374ef8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x0000000040374ef8 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 + 0x0000000040374efc 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 + 0x0000000040374f04 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_read_unique_id + 0x0000000040374f04 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_command_winbond_program_4B + 0x0000000040374f0c 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 + 0x0000000040374f0c 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 + 0x0000000040374f0c 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 + 0x0000000040374f0c 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 + 0x0000000040374f0c 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 + 0x0000000040374f0c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x0000000040374f0c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x20 (size before relaxing) + .literal 0x0000000040374f14 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .iram1.1 0x0000000040374f14 0xb6 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x0000000040374f14 esp_ota_get_app_elf_sha256 + *fill* 0x0000000040374fca 0x2 + .iram1.26 0x0000000040374fcc 0x9e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xa2 (size before relaxing) + 0x0000000040374fcc call_start_cpu1 + *fill* 0x000000004037506a 0x2 + .iram1.27 0x000000004037506c 0x186 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x196 (size before relaxing) + 0x000000004037506c call_start_cpu0 + *fill* 0x00000000403751f2 0x2 + .iram1 0x00000000403751f4 0x87 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x00000000403751f4 xt_highint4 + 0x000000004037527b ld_include_highint_hdl + *fill* 0x000000004037527b 0x1 + .iram1.25 0x000000004037527c 0x56 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x66 (size before relaxing) + *fill* 0x00000000403752d2 0x2 + .iram1.30 0x00000000403752d4 0x24 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x2a (size before relaxing) + 0x00000000403752d4 esp_restart + *fill* 0x00000000403752f8 0x0 + .iram1.27 0x00000000403752f8 0xb esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x0000000040375303 0x1 + .iram1.26 0x0000000040375304 0x2a esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x0000000040375304 start_cpu_other_cores + *fill* 0x000000004037532e 0x2 + .iram1.25 0x0000000040375330 0x1a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004037534a 0x2 + .iram1.26 0x000000004037534c 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x000000004037534c panicHandler + *fill* 0x000000004037535e 0x2 + .iram1.27 0x0000000040375360 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x0000000040375360 xt_unhandled_exception + *fill* 0x0000000040375372 0x2 + .iram1.2 0x0000000040375374 0x18b esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x1d3 (size before relaxing) + 0x0000000040375374 esp_restart_noos + *fill* 0x00000000403754ff 0x1 + .iram1.23 0x0000000040375500 0x3b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x000000004037553b 0x1 + .iram1.24 0x000000004037553c 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.22 0x0000000040375554 0xa9 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x0000000040375554 esp_backtrace_get_next_frame + *fill* 0x00000000403755fd 0x3 + .iram1.25 0x0000000040375600 0x16e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x17e (size before relaxing) + 0x0000000040375600 esp_backtrace_print_from_frame + *fill* 0x000000004037576e 0x2 + .iram1.26 0x0000000040375770 0x25 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x29 (size before relaxing) + 0x0000000040375770 esp_backtrace_print + *fill* 0x0000000040375795 0x3 + .iram1.23 0x0000000040375798 0x2b esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x0000000040375798 esp_vApplicationTickHook + *fill* 0x00000000403757c3 0x1 + .iram1.0 0x00000000403757c4 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x00000000403757c4 esp_rom_uart_set_clock_baudrate + .iram1.31 0x00000000403757d8 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x00000000403757fb 0x1 + .iram1.24 0x00000000403757fc 0x93 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000004037588f 0x1 + .iram1.25 0x0000000040375890 0xcc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xd0 (size before relaxing) + 0x0000000040375890 heap_caps_malloc + .iram1.26 0x000000004037595c 0x41 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x49 (size before relaxing) + 0x000000004037595c heap_caps_malloc_default + *fill* 0x000000004037599d 0x3 + .iram1.32 0x00000000403759a0 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x00000000403759a0 heap_caps_free + *fill* 0x00000000403759d7 0x1 + .iram1.33 0x00000000403759d8 0x131 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x145 (size before relaxing) + 0x00000000403759d8 heap_caps_realloc + *fill* 0x0000000040375b09 0x3 + .iram1.27 0x0000000040375b0c 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x64 (size before relaxing) + 0x0000000040375b0c heap_caps_realloc_default + .iram1.2 0x0000000040375b68 0xa esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0xe (size before relaxing) + 0x0000000040375b68 esp_cpu_stall + *fill* 0x0000000040375b72 0x2 + .iram1.3 0x0000000040375b74 0xa esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0xe (size before relaxing) + 0x0000000040375b74 esp_cpu_unstall + *fill* 0x0000000040375b7e 0x2 + .iram1.4 0x0000000040375b80 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x0000000040375b80 esp_cpu_reset + *fill* 0x0000000040375ba1 0x3 + .iram1.7 0x0000000040375ba4 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x0000000040375ba4 esp_cpu_in_ocd_debug_mode + *fill* 0x0000000040375bb2 0x2 + .iram1.2 0x0000000040375bb4 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x0000000040375bb4 esp_clk_cpu_freq + *fill* 0x0000000040375bc5 0x3 + .iram1.25 0x0000000040375bc8 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x3c (size before relaxing) + *fill* 0x0000000040375c01 0x3 + .iram1.29 0x0000000040375c04 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x87 (size before relaxing) + 0x0000000040375c04 esp_intr_noniram_disable + *fill* 0x0000000040375c74 0x0 + .iram1.30 0x0000000040375c74 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x70 (size before relaxing) + 0x0000000040375c74 esp_intr_noniram_enable + *fill* 0x0000000040375cd1 0x3 + .iram1.27 0x0000000040375cd4 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xb1 (size before relaxing) + 0x0000000040375cd4 esp_intr_enable + *fill* 0x0000000040375d7d 0x3 + .iram1.28 0x0000000040375d80 0xf6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x10e (size before relaxing) + 0x0000000040375d80 esp_intr_disable + *fill* 0x0000000040375e76 0x2 + .iram1.26 0x0000000040375e78 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x3a (size before relaxing) + 0x0000000040375e78 regi2c_ctrl_read_reg_mask + *fill* 0x0000000040375eae 0x2 + .iram1.27 0x0000000040375eb0 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x32 (size before relaxing) + 0x0000000040375eb0 regi2c_ctrl_write_reg + *fill* 0x0000000040375ede 0x2 + .iram1.28 0x0000000040375ee0 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x3b (size before relaxing) + 0x0000000040375ee0 regi2c_ctrl_write_reg_mask + *fill* 0x0000000040375f17 0x1 + .iram1.23 0x0000000040375f18 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000040375f18 xt_unhandled_interrupt + *fill* 0x0000000040375f2e 0x2 + .iram1.31 0x0000000040375f30 0x23 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000040375f53 0x1 + .iram1.28 0x0000000040375f54 0x9d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040375ff1 0x3 + .iram1.32 0x0000000040375ff4 0x23 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000040376017 0x1 + .iram1.33 0x0000000040376018 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040376037 0x1 + .iram1.2 0x0000000040376038 0x1f esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x0000000040376038 esp_system_get_time + *fill* 0x0000000040376057 0x1 + .iram1.27 0x0000000040376058 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x000000004037607e 0x2 + .iram1.24 0x0000000040376080 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x0000000040376080 esp_timer_get_time + 0x0000000040376080 esp_timer_impl_get_time + .iram1.25 0x00000000403760ac 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x73 (size before relaxing) + 0x00000000403760ac esp_timer_impl_set_alarm_id + *fill* 0x0000000040376110 0x0 + .iram1.26 0x0000000040376110 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040376110 xPortInterruptedFromISRContext + *fill* 0x000000004037612e 0x2 + .iram1.27 0x0000000040376130 0x56 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x59 (size before relaxing) + 0x0000000040376130 vPortEvaluateYieldFromISR + *fill* 0x0000000040376186 0x2 + .iram1 0x0000000040376188 0x578 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000004037623c _xt_user_exit + 0x0000000040376644 _xt_medint2_exit + 0x00000000403766ec _xt_medint3_exit + .iram1.25 0x0000000040376700 0x8c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x90 (size before relaxing) + 0x0000000040376700 SysTickIsrHandler + .iram1.25 0x000000004037678c 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000403767b0 0x0 + .iram1.41 0x00000000403767b0 0x1a esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x00000000403767ca 0x2 + .iram1.29 0x00000000403767cc 0xb1 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xc1 (size before relaxing) + *fill* 0x000000004037687d 0x3 + .iram1.34 0x0000000040376880 0x5e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000403768de 0x2 + .iram1.28 0x00000000403768e0 0x3b esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x43 (size before relaxing) + 0x00000000403768e0 _lock_close_recursive + 0x00000000403768e0 _lock_close + *fill* 0x000000004037691b 0x1 + .iram1.30 0x000000004037691c 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x000000004037691c _lock_acquire + *fill* 0x000000004037692a 0x2 + .iram1.31 0x000000004037692c 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x000000004037692c _lock_acquire_recursive + *fill* 0x000000004037693a 0x2 + .iram1.32 0x000000004037693c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x000000004037693c _lock_try_acquire + .iram1.33 0x000000004037694c 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x000000004037694c _lock_try_acquire_recursive + .iram1.35 0x000000004037695c 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004037695c _lock_release + *fill* 0x000000004037696b 0x1 + .iram1.36 0x000000004037696c 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004037696c _lock_release_recursive + *fill* 0x000000004037697b 0x1 + .iram1.37 0x000000004037697c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000004037697c __retarget_lock_init + *fill* 0x000000004037698f 0x1 + .iram1.38 0x0000000040376990 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040376990 __retarget_lock_init_recursive + *fill* 0x00000000403769a3 0x1 + .iram1.39 0x00000000403769a4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403769a4 __retarget_lock_close + *fill* 0x00000000403769b3 0x1 + .iram1.40 0x00000000403769b4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000403769b4 __retarget_lock_close_recursive + *fill* 0x00000000403769c3 0x1 + .iram1.42 0x00000000403769c4 0x21 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + 0x00000000403769c4 __retarget_lock_acquire + *fill* 0x00000000403769e5 0x3 + .iram1.43 0x00000000403769e8 0x21 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + 0x00000000403769e8 __retarget_lock_acquire_recursive + *fill* 0x0000000040376a09 0x3 + .iram1.44 0x0000000040376a0c 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040376a0c __retarget_lock_try_acquire + *fill* 0x0000000040376a32 0x2 + .iram1.45 0x0000000040376a34 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040376a34 __retarget_lock_try_acquire_recursive + *fill* 0x0000000040376a5a 0x2 + .iram1.46 0x0000000040376a5c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x0000000040376a5c __retarget_lock_release + *fill* 0x0000000040376a6f 0x1 + .iram1.47 0x0000000040376a70 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x0000000040376a70 __retarget_lock_release_recursive + *fill* 0x0000000040376a83 0x1 + .iram1.0 0x0000000040376a84 0x37 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x0000000040376a84 esp_reent_init + *fill* 0x0000000040376abb 0x1 + .iram1.26 0x0000000040376abc 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x0000000040376abc _gettimeofday_r + *fill* 0x0000000040376b06 0x2 + .iram1.25 0x0000000040376b08 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2d (size before relaxing) + 0x0000000040376b08 _times_r + *fill* 0x0000000040376b31 0x3 + .iram1.25 0x0000000040376b34 0x9c esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0xa0 (size before relaxing) + .iram1.30 0x0000000040376bd0 0xf esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x0000000040376bd0 esp_ipc_isr_stall_abort + 0x0000000040376bd0 esp_dport_access_int_abort + *fill* 0x0000000040376bdf 0x1 + .iram1 0x0000000040376be0 0x5d esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + 0x0000000040376be0 esp_ipc_isr_handler + *fill* 0x0000000040376c3d 0x3 + .iram1.2 0x0000000040376c40 0x18c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x0000000040376c40 bootloader_execute_flash_command + .iram1.33 0x0000000040376dcc 0x17 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x0000000040376de3 0x1 + .iram1.27 0x0000000040376de4 0x4a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x56 (size before relaxing) + 0x0000000040376de4 spi_flash_op_block_func + *fill* 0x0000000040376e2e 0x2 + .iram1.32 0x0000000040376e30 0x19 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x0000000040376e49 0x3 + .iram1.28 0x0000000040376e4c 0x10f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x12b (size before relaxing) + 0x0000000040376e4c spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x0000000040376f5b 0x1 + .iram1.29 0x0000000040376f5c 0xad esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb5 (size before relaxing) + 0x0000000040376f5c spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x0000000040377009 0x3 + .iram1.34 0x000000004037700c 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000004037700c spi_flash_cache_enabled + .iram1.38 0x000000004037701c 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x000000004037701c spi_flash_enable_cache + *fill* 0x000000004037702b 0x1 + .iram1.32 0x000000004037702c 0x1a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1e (size before relaxing) + *fill* 0x0000000040377046 0x2 + .iram1.26 0x0000000040377048 0x6f esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x00000000403770b7 0x1 + .iram1.27 0x00000000403770b8 0x59 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x0000000040377111 0x3 + .iram1.35 0x0000000040377114 0x8e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x00000000403771a2 0x2 + .iram1.29 0x00000000403771a4 0x1e5 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1f9 (size before relaxing) + 0x00000000403771a4 spi_flash_mmap_pages + *fill* 0x0000000040377389 0x3 + .iram1.28 0x000000004037738c 0x79 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x7d (size before relaxing) + 0x000000004037738c spi_flash_mmap + *fill* 0x0000000040377405 0x3 + .iram1.30 0x0000000040377408 0x98 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x9e (size before relaxing) + 0x0000000040377408 spi_flash_munmap + *fill* 0x00000000403774a0 0x0 + .iram1.36 0x00000000403774a0 0x58 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x00000000403774a0 spi_flash_check_and_flush_cache + .iram1.36 0x00000000403774f8 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000040377502 0x2 + .iram1.29 0x0000000040377504 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040377504 spi_flash_guard_set + *fill* 0x000000004037750e 0x2 + .iram1.31 0x0000000040377510 0xc esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040377510 spi_flash_get_chip_size + .iram1.27 0x000000004037751c 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000040377562 0x2 + .iram1.31 0x0000000040377564 0x86 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8a (size before relaxing) + *fill* 0x00000000403775ea 0x2 + .iram1.29 0x00000000403775ec 0x6a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000040377656 0x2 + .iram1.32 0x0000000040377658 0x74 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040377658 esp_flash_get_size + .iram1.28 0x00000000403776cc 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x162 (size before relaxing) + 0x00000000403776cc esp_flash_init + *fill* 0x0000000040377812 0x2 + .iram1.29 0x0000000040377814 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040377822 0x2 + .iram1.30 0x0000000040377824 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040377832 0x2 + .iram1.33 0x0000000040377834 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.39 0x0000000040377840 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004037784a 0x2 + .iram1.38 0x000000004037784c 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4a (size before relaxing) + *fill* 0x0000000040377892 0x2 + .iram1.37 0x0000000040377894 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.36 0x00000000403778a4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.34 0x00000000403778b8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.35 0x00000000403778cc 0x56 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040377922 0x2 + .iram1.40 0x0000000040377924 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040377942 0x2 + .iram1.3 0x0000000040377944 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.2 0x0000000040377954 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x0000000040377971 0x3 + .iram1.1 0x0000000040377974 0x17 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x000000004037798b 0x1 + .iram1.25 0x000000004037798c 0x4e esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x5a (size before relaxing) + *fill* 0x00000000403779da 0x2 + .iram1.26 0x00000000403779dc 0x5d esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x61 (size before relaxing) + *fill* 0x0000000040377a39 0x3 + .iram1.27 0x0000000040377a3c 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x0000000040377a3c esp_crosscore_int_send_yield + *fill* 0x0000000040377a4b 0x1 + .iram1.29 0x0000000040377a4c 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x0000000040377a4c esp_crosscore_int_send_print_backtrace + *fill* 0x0000000040377a5b 0x1 + .iram1 0x0000000040377a5c 0x42 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x0000000040377a5c _xt_panic + *fill* 0x0000000040377a9e 0x0 + *fill* 0x0000000040377a9e 0x0 + *fill* 0x0000000040377a9e 0x0 + *fill* 0x0000000040377a9e 0x2 + .iram1.2 0x0000000040377aa0 0x7 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x0000000040377aa0 esp_cache_err_get_cpuid + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x0 + *fill* 0x0000000040377aa7 0x1 + .iram1 0x0000000040377aa8 0x1a esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x0000000040377aa8 esp_backtrace_get_start + *fill* 0x0000000040377ac2 0x0 + *fill* 0x0000000040377ac2 0x2 + .iram1.2 0x0000000040377ac4 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040377ac4 esp_reset_reason_set_hint + *fill* 0x0000000040377ac9 0x3 + .iram1.3 0x0000000040377acc 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000040377acc esp_reset_reason_get_hint + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x0 + *fill* 0x0000000040377ad3 0x1 + .iram1 0x0000000040377ad4 0x2e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x0000000040377ad4 xt_debugexception + 0x0000000040377af4 xt_highint5 + 0x0000000040377afc _xt_nmi + 0x0000000040377afc xt_nmi + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x0 + *fill* 0x0000000040377b02 0x2 + .iram1.28 0x0000000040377b04 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040377b04 esp_mspi_pin_init + *fill* 0x0000000040377b09 0x0 + *fill* 0x0000000040377b09 0x3 + .iram1.25 0x0000000040377b0c 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000040377b2e 0x2 + .iram1.26 0x0000000040377b30 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *fill* 0x0000000040377b48 0x0 + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.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_util.*(.literal .literal.* .text .text.*) + .text.esp_cpu_configure_region_protection + 0x0000000040377b48 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x0000000040377b48 esp_cpu_configure_region_protection + *fill* 0x0000000040377b7e 0x0 + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040377b7e 0x2 + .text.rtc_clk_bbpll_disable + 0x0000000040377b80 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x0000000040377b9f 0x1 + .text.rtc_clk_bbpll_enable + 0x0000000040377ba0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_internal + 0x0000000040377bb8 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377bb8 rtc_clk_32k_enable_internal + *fill* 0x0000000040377c3a 0x2 + .text.rtc_clk_32k_enable + 0x0000000040377c3c 0x6d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377c3c rtc_clk_32k_enable + *fill* 0x0000000040377ca9 0x3 + .text.rtc_clk_32k_enable_external + 0x0000000040377cac 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377cac rtc_clk_32k_enable_external + *fill* 0x0000000040377cee 0x2 + .text.rtc_clk_8m_enable + 0x0000000040377cf0 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377cf0 rtc_clk_8m_enable + *fill* 0x0000000040377d8d 0x3 + .text.rtc_clk_slow_freq_set + 0x0000000040377d90 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377d90 rtc_clk_slow_freq_set + *fill* 0x0000000040377dfa 0x2 + .text.rtc_clk_slow_freq_get + 0x0000000040377dfc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377dfc rtc_clk_slow_freq_get + .text.wait_dig_dbias_valid + 0x0000000040377e0c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x0000000040377e32 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x0000000040377e34 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x29 (size before relaxing) + 0x0000000040377e34 rtc_clk_slow_freq_get_hz + *fill* 0x0000000040377e59 0x3 + .text.rtc_clk_fast_freq_set + 0x0000000040377e5c 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377e5c rtc_clk_fast_freq_set + .text.rtc_clk_bbpll_configure + 0x0000000040377e88 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x143 (size before relaxing) + 0x0000000040377e88 rtc_clk_bbpll_configure + *fill* 0x0000000040377fab 0x1 + .text.rtc_clk_xtal_freq_get + 0x0000000040377fac 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377fac rtc_clk_xtal_freq_get + 0x0000000040377fac rtc_get_xtal + .text.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040377ff8 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040377ff8 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x000000004037805c 0xce esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xd2 (size before relaxing) + 0x000000004037805c rtc_clk_cpu_freq_get_config + *fill* 0x000000004037812a 0x2 + .text.rtc_clk_apb_freq_update + 0x000000004037812c 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x000000004037812c rtc_clk_apb_freq_update + *fill* 0x0000000040378136 0x2 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040378138 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xba (size before relaxing) + *fill* 0x00000000403781e2 0x2 + .text.rtc_clk_cpu_freq_to_8m + 0x00000000403781e4 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x60 (size before relaxing) + .text.rtc_clk_cpu_freq_to_xtal + 0x000000004037823c 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8e (size before relaxing) + 0x000000004037823c rtc_clk_cpu_freq_to_xtal + *fill* 0x00000000403782be 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x00000000403782c0 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x61 (size before relaxing) + 0x00000000403782c0 rtc_clk_cpu_freq_set_config + *fill* 0x000000004037830f 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000040378310 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x19 (size before relaxing) + 0x0000000040378310 rtc_clk_cpu_freq_set_xtal + *fill* 0x0000000040378321 0x3 + .text.rtc_clk_apb_freq_get + 0x0000000040378324 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x0000000040378324 rtc_clk_apb_freq_get + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *fill* 0x000000004037832e 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037832e 0x2 + .text.rtc_sleep_pu + 0x0000000040378330 0x1b4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x0000000040378330 rtc_sleep_pu + *fill* 0x00000000403784e4 0x0 + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x00000000403784e4 0x1de esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x00000000403784e4 rtc_clk_cal_internal + *fill* 0x00000000403786c2 0x2 + .text.rtc_clk_cal + 0x00000000403786c4 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x52 (size before relaxing) + 0x00000000403786c4 rtc_clk_cal + *fill* 0x0000000040378712 0x2 + .text.rtc_time_us_to_slowclk + 0x0000000040378714 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x0000000040378714 rtc_time_us_to_slowclk + *fill* 0x0000000040378733 0x1 + .text.rtc_time_get + 0x0000000040378734 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x0000000040378734 rtc_time_get + *fill* 0x000000004037875c 0x0 + *fill* 0x000000004037875c 0x0 + *fill* 0x000000004037875c 0x0 + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + .text.prvGetFreeSize + 0x000000004037875c 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040378799 0x3 + .text.prvReceiveGeneric + 0x000000004037879c 0x135 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x145 (size before relaxing) + *fill* 0x00000000403788d1 0x3 + .text.xRingbufferSend + 0x00000000403788d4 0xfe esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10a (size before relaxing) + 0x00000000403788d4 xRingbufferSend + *fill* 0x00000000403789d2 0x2 + .text.xRingbufferReceive + 0x00000000403789d4 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x42 (size before relaxing) + 0x00000000403789d4 xRingbufferReceive + *fill* 0x0000000040378a12 0x2 + .text.vRingbufferReturnItem + 0x0000000040378a14 0x53 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x5b (size before relaxing) + 0x0000000040378a14 vRingbufferReturnItem + *fill* 0x0000000040378a67 0x1 + .text.prvCheckItemAvail + 0x0000000040378a68 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040378aa0 0x0 + *fill* 0x0000000040378aa0 0x0 + *fill* 0x0000000040378aa0 0x0 + *fill* 0x0000000040378aa0 0x0 + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + .text.esp_error_check_failed_print + 0x0000000040378aa0 0x5a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040378afa 0x2 + .text._esp_error_check_failed + 0x0000000040378afc 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x1e (size before relaxing) + 0x0000000040378afc _esp_error_check_failed + *fill* 0x0000000040378b12 0x0 + *fill* 0x0000000040378b12 0x0 + *libesp_system.a:esp_system.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x0000000040378b12 0x2 + .text.esp_system_abort + 0x0000000040378b14 0xc esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x0000000040378b14 esp_system_abort + *fill* 0x0000000040378b20 0x0 + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x0000000040378b20 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x0000000040378b20 __ubsan_include + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .literal EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .literal.* EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .text EXCLUDE_FILE(*libfreertos.a:port_common.* *libfreertos.a:port.*) .text.*) + *fill* 0x0000000040378b25 0x3 + .text 0x0000000040378b28 0x190 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x0000000040378b28 _frxt_setup_switch + 0x0000000040378b40 _frxt_int_enter + 0x0000000040378b88 _frxt_int_exit + 0x0000000040378bd8 _frxt_dispatch + 0x0000000040378c20 vPortYield + 0x0000000040378c6c vPortYieldFromInt + 0x0000000040378c8c _frxt_task_coproc_state + .text 0x0000000040378cb8 0x182 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x0000000040378cb8 _xt_context_save + 0x0000000040378d60 _xt_context_restore + 0x0000000040378da4 _xt_coproc_init + 0x0000000040378dbc _xt_coproc_release + 0x0000000040378dec _xt_coproc_savecs + 0x0000000040378e14 _xt_coproc_restorecs + *fill* 0x0000000040378e3a 0x2 + .text.vPortSetupTimer + 0x0000000040378e3c 0xbf esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0xde (size before relaxing) + 0x0000000040378e3c vPortSetupTimer + *fill* 0x0000000040378efb 0x1 + .text.xPortSysTickHandler + 0x0000000040378efc 0x13 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x17 (size before relaxing) + 0x0000000040378efc xPortSysTickHandler + *fill* 0x0000000040378f0f 0x1 + .text.prvIsQueueEmpty + 0x0000000040378f10 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x0000000040378f36 0x2 + .text.prvCopyDataToQueue + 0x0000000040378f38 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x0000000040378fca 0x2 + .text.prvNotifyQueueSetContainer + 0x0000000040378fcc 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xa6 (size before relaxing) + *fill* 0x000000004037906e 0x2 + .text.prvCopyDataFromQueue + 0x0000000040379070 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvUnlockQueue + 0x0000000040379094 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb6 (size before relaxing) + *fill* 0x0000000040379136 0x2 + .text.xQueueGenericReset + 0x0000000040379138 0xad esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb9 (size before relaxing) + 0x0000000040379138 xQueueGenericReset + *fill* 0x00000000403791e5 0x3 + .text.prvInitialiseNewQueue + 0x00000000403791e8 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040379207 0x1 + .text.xQueueGenericCreateStatic + 0x0000000040379208 0xc0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc4 (size before relaxing) + 0x0000000040379208 xQueueGenericCreateStatic + .text.xQueueGenericCreate + 0x00000000403792c8 0x98 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9c (size before relaxing) + 0x00000000403792c8 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x0000000040379360 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040379360 xQueueGetMutexHolder + .text.xQueueGenericSend + 0x0000000040379384 0x22e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x272 (size before relaxing) + 0x0000000040379384 xQueueGenericSend + *fill* 0x00000000403795b2 0x2 + .text.prvInitialiseMutex + 0x00000000403795b4 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000403795ee 0x2 + .text.xQueueCreateMutex + 0x00000000403795f0 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x00000000403795f0 xQueueCreateMutex + *fill* 0x0000000040379606 0x2 + .text.xQueueCreateMutexStatic + 0x0000000040379608 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x0000000040379608 xQueueCreateMutexStatic + *fill* 0x0000000040379622 0x2 + .text.xQueueGiveMutexRecursive + 0x0000000040379624 0x46 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4a (size before relaxing) + 0x0000000040379624 xQueueGiveMutexRecursive + *fill* 0x000000004037966a 0x2 + .text.xQueueGiveFromISR + 0x000000004037966c 0xe8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xf0 (size before relaxing) + 0x000000004037966c xQueueGiveFromISR + .text.xQueueSemaphoreTake + 0x0000000040379754 0x1b2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1fe (size before relaxing) + 0x0000000040379754 xQueueSemaphoreTake + *fill* 0x0000000040379906 0x2 + .text.xQueueTakeMutexRecursive + 0x0000000040379908 0x4a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040379908 xQueueTakeMutexRecursive + *fill* 0x0000000040379952 0x2 + .text.xQueueReceiveFromISR + 0x0000000040379954 0xc6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xce (size before relaxing) + 0x0000000040379954 xQueueReceiveFromISR + *fill* 0x0000000040379a1a 0x2 + .text.vQueueDelete + 0x0000000040379a1c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x0000000040379a1c vQueueDelete + *fill* 0x0000000040379a40 0x0 + .text.prvResetNextTaskUnblockTime + 0x0000000040379a40 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTLS + 0x0000000040379a78 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040379ab6 0x2 + .text.prvInitialiseNewTask + 0x0000000040379ab8 0xd6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe2 (size before relaxing) + *fill* 0x0000000040379b8e 0x2 + .text.prvInitialiseTaskLists + 0x0000000040379b90 0x6d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7d (size before relaxing) + *fill* 0x0000000040379bfd 0x3 + .text.prvDeleteTCB + 0x0000000040379c00 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + *fill* 0x0000000040379c4b 0x1 + .text.prvCheckTasksWaitingTermination + 0x0000000040379c4c 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd6 (size before relaxing) + *fill* 0x0000000040379d16 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x0000000040379d18 0xba esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbe (size before relaxing) + *fill* 0x0000000040379dd2 0x2 + .text.prvIdleTask + 0x0000000040379dd4 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000040379de3 0x1 + .text.taskYIELD_OTHER_CORE + 0x0000000040379de4 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + 0x0000000040379de4 taskYIELD_OTHER_CORE + .text.prvAddNewTaskToReadyList + 0x0000000040379e38 0x149 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x15d (size before relaxing) + *fill* 0x0000000040379f81 0x3 + .text.xTaskCreatePinnedToCore + 0x0000000040379f84 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x78 (size before relaxing) + 0x0000000040379f84 xTaskCreatePinnedToCore + .text.vTaskDelay + 0x0000000040379fec 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + 0x0000000040379fec vTaskDelay + .text.vTaskSuspendAll + 0x000000004037a03c 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037a03c vTaskSuspendAll + .text.xTaskGetTickCount + 0x000000004037a064 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037a064 xTaskGetTickCount + *fill* 0x000000004037a071 0x3 + .text.xTaskGetTickCountFromISR + 0x000000004037a074 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037a074 xTaskGetTickCountFromISR + *fill* 0x000000004037a08a 0x2 + .text.xTaskGetIdleTaskHandleForCPU + 0x000000004037a08c 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037a08c xTaskGetIdleTaskHandleForCPU + *fill* 0x000000004037a0ca 0x2 + .text.xTaskIncrementTick + 0x000000004037a0cc 0x1ae esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ba (size before relaxing) + 0x000000004037a0cc xTaskIncrementTick + *fill* 0x000000004037a27a 0x2 + .text.xTaskResumeAll + 0x000000004037a27c 0x210 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x217 (size before relaxing) + 0x000000004037a27c xTaskResumeAll + *fill* 0x000000004037a48c 0x0 + .text.vTaskSwitchContext + 0x000000004037a48c 0x3ae esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3b6 (size before relaxing) + 0x000000004037a48c vTaskSwitchContext + *fill* 0x000000004037a83a 0x2 + .text.vTaskPlaceOnEventList + 0x000000004037a83c 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + 0x000000004037a83c vTaskPlaceOnEventList + .text.xTaskRemoveFromEventList + 0x000000004037a88c 0x148 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x153 (size before relaxing) + 0x000000004037a88c xTaskRemoveFromEventList + *fill* 0x000000004037a9d4 0x0 + .text.vTaskInternalSetTimeOutState + 0x000000004037a9d4 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037a9d4 vTaskInternalSetTimeOutState + *fill* 0x000000004037a9ed 0x3 + .text.xTaskCheckForTimeOut + 0x000000004037a9f0 0x8d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x91 (size before relaxing) + 0x000000004037a9f0 xTaskCheckForTimeOut + *fill* 0x000000004037aa7d 0x3 + .text.vTaskMissedYield + 0x000000004037aa80 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037aa80 vTaskMissedYield + *fill* 0x000000004037aa9a 0x2 + .text.xTaskGetCurrentTaskHandle + 0x000000004037aa9c 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037aa9c xTaskGetCurrentTaskHandle + *fill* 0x000000004037aabe 0x2 + .text.uxTaskPriorityGet + 0x000000004037aac0 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x23 (size before relaxing) + 0x000000004037aac0 uxTaskPriorityGet + *fill* 0x000000004037aadc 0x0 + .text.vTaskPrioritySet + 0x000000004037aadc 0x181 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x197 (size before relaxing) + 0x000000004037aadc vTaskPrioritySet + *fill* 0x000000004037ac5d 0x3 + .text.__getreent + 0x000000004037ac60 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x19 (size before relaxing) + 0x000000004037ac60 __getreent + *fill* 0x000000004037ac75 0x3 + .text.pcTaskGetName + 0x000000004037ac78 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037ac78 pcTaskGetName + *fill* 0x000000004037ac9f 0x1 + .text.xTaskGetAffinity + 0x000000004037aca0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x000000004037aca0 xTaskGetAffinity + *fill* 0x000000004037acb0 0x0 + .text.uxTaskGetStackHighWaterMark + 0x000000004037acb0 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037acb0 uxTaskGetStackHighWaterMark + *fill* 0x000000004037acca 0x2 + .text.xTaskGetCurrentTaskHandleForCPU + 0x000000004037accc 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037accc xTaskGetCurrentTaskHandleForCPU + *fill* 0x000000004037ace6 0x2 + .text.xTaskGetSchedulerState + 0x000000004037ace8 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037ace8 xTaskGetSchedulerState + *fill* 0x000000004037ad19 0x3 + .text.vTaskDelete + 0x000000004037ad1c 0xfe esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x116 (size before relaxing) + 0x000000004037ad1c vTaskDelete + *fill* 0x000000004037ae1a 0x2 + .text.xTaskPriorityInherit + 0x000000004037ae1c 0xf7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xfe (size before relaxing) + 0x000000004037ae1c xTaskPriorityInherit + *fill* 0x000000004037af13 0x1 + .text.xTaskPriorityDisinherit + 0x000000004037af14 0xb9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc1 (size before relaxing) + 0x000000004037af14 xTaskPriorityDisinherit + *fill* 0x000000004037afcd 0x3 + .text.vTaskPriorityDisinheritAfterTimeout + 0x000000004037afd0 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc3 (size before relaxing) + 0x000000004037afd0 vTaskPriorityDisinheritAfterTimeout + *fill* 0x000000004037b08c 0x0 + .text.pvTaskIncrementMutexHeldCount + 0x000000004037b08c 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5a (size before relaxing) + 0x000000004037b08c pvTaskIncrementMutexHeldCount + *fill* 0x000000004037b0e2 0x2 + .text.ulTaskNotifyTake + 0x000000004037b0e4 0xea esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xfa (size before relaxing) + 0x000000004037b0e4 ulTaskNotifyTake + *fill* 0x000000004037b1ce 0x2 + .text.vTaskNotifyGiveFromISR + 0x000000004037b1d0 0x111 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11d (size before relaxing) + 0x000000004037b1d0 vTaskNotifyGiveFromISR + *fill* 0x000000004037b2e1 0x3 + .text.vTaskStartScheduler + 0x000000004037b2e4 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x87 (size before relaxing) + 0x000000004037b2e4 vTaskStartScheduler + *fill* 0x000000004037b367 0x0 + *fill* 0x000000004037b367 0x0 + *fill* 0x000000004037b367 0x0 + *fill* 0x000000004037b367 0x1 + .text.prvGetDisinheritPriorityAfterTimeout + 0x000000004037b368 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.prvIsQueueFull + 0x000000004037b380 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x0 + *fill* 0x000000004037b396 0x2 + .text.prvTaskCheckFreeStackSpace + 0x000000004037b398 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x0 + *fill* 0x000000004037b3b2 0x2 + .text.xTimerCreateTimerTask + 0x000000004037b3b4 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004037b3b4 xTimerCreateTimerTask + *fill* 0x000000004037b3bb 0x0 + *fill* 0x000000004037b3bb 0x1 + .text.vListInitialise + 0x000000004037b3bc 0x18 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004037b3bc vListInitialise + .text.vListInitialiseItem + 0x000000004037b3d4 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004037b3d4 vListInitialiseItem + *fill* 0x000000004037b3dd 0x3 + .text.vListInsertEnd + 0x000000004037b3e0 0x1f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004037b3e0 vListInsertEnd + *fill* 0x000000004037b3ff 0x1 + .text.vListInsert + 0x000000004037b400 0x35 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004037b400 vListInsert + *fill* 0x000000004037b435 0x3 + .text.uxListRemove + 0x000000004037b438 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004037b438 uxListRemove + *libfreertos.a:port.*(.literal.pxPortInitialiseStack .literal.vApplicationStackOverflowHook .literal.vPortAssertIfInISR .literal.vPortEndScheduler .literal.vPortEnterCritical .literal.vPortExitCritical .literal.vPortReleaseTaskMPUSettings .literal.vPortSetStackWatchpoint .literal.vPortTaskWrapper .literal.vPortYieldOtherCore .literal.xPortInIsrContext .literal.xPortStartScheduler .text .text.pxPortInitialiseStack .text.vApplicationStackOverflowHook .text.vPortAssertIfInISR .text.vPortEndScheduler .text.vPortEnterCritical .text.vPortExitCritical .text.vPortReleaseTaskMPUSettings .text.vPortSetStackWatchpoint .text.vPortStoreTaskMPUSettings .text.vPortTaskWrapper .text.vPortYieldOtherCore .text.xPortGetTickRateHz .text.xPortInIsrContext .text.xPortStartScheduler) + *fill* 0x000000004037b467 0x1 + .text.vPortTaskWrapper + 0x000000004037b468 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004037b48e 0x2 + .text.pxPortInitialiseStack + 0x000000004037b490 0xb4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037b490 pxPortInitialiseStack + .text.xPortStartScheduler + 0x000000004037b544 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2c (size before relaxing) + 0x000000004037b544 xPortStartScheduler + .text.vPortYieldOtherCore + 0x000000004037b568 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x000000004037b568 vPortYieldOtherCore + *fill* 0x000000004037b572 0x2 + .text.vPortReleaseTaskMPUSettings + 0x000000004037b574 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x000000004037b574 vPortReleaseTaskMPUSettings + *fill* 0x000000004037b57e 0x2 + .text.xPortInIsrContext + 0x000000004037b580 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037b580 xPortInIsrContext + .text.vPortEnterCritical + 0x000000004037b5a8 0xba esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037b5a8 vPortEnterCritical + *fill* 0x000000004037b662 0x2 + .text.vPortExitCritical + 0x000000004037b664 0x8b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037b664 vPortExitCritical + *fill* 0x000000004037b6ef 0x1 + .text.vApplicationStackOverflowHook + 0x000000004037b6f0 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + 0x000000004037b6f0 vApplicationStackOverflowHook + *fill* 0x000000004037b72c 0x0 + *fill* 0x000000004037b72c 0x0 + *fill* 0x000000004037b72c 0x0 + .text.vPortStoreTaskMPUSettings + 0x000000004037b72c 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000004037b72c vPortStoreTaskMPUSettings + *fill* 0x000000004037b746 0x0 + *fill* 0x000000004037b746 0x0 + *fill* 0x000000004037b746 0x0 + *fill* 0x000000004037b746 0x0 + *libfreertos.a:port_common.*(.literal.esp_startup_start_app_common .text .text.esp_startup_start_app_common) + *fill* 0x000000004037b746 0x2 + .text.esp_startup_start_app_common + 0x000000004037b748 0x42 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x000000004037b748 esp_startup_start_app_common + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cpu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037b78a 0x2 + .text.cpu_hal_set_breakpoint + 0x000000004037b78c 0x22 esp-idf/hal/libhal.a(cpu_hal.c.obj) + 0x000000004037b78c cpu_hal_set_breakpoint + *fill* 0x000000004037b7ae 0x2 + .text.cpu_hal_set_vecbase + 0x000000004037b7b0 0x8 esp-idf/hal/libhal.a(cpu_hal.c.obj) + 0x000000004037b7b0 cpu_hal_set_vecbase + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:soc_hal.*(.literal .literal.* .text .text.*) + .text.soc_hal_stall_core + 0x000000004037b7b8 0x8e esp-idf/hal/libhal.a(soc_hal.c.obj) + 0x000000004037b7b8 soc_hal_stall_core + *fill* 0x000000004037b846 0x2 + .text.soc_hal_unstall_core + 0x000000004037b848 0x4c esp-idf/hal/libhal.a(soc_hal.c.obj) + 0x000000004037b848 soc_hal_unstall_core + *fill* 0x000000004037b894 0x0 + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + .text.spi_flash_encryption_hal_enable + 0x000000004037b894 0x21 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004037b894 spi_flash_encryption_hal_enable + *fill* 0x000000004037b8b5 0x3 + .text.spi_flash_encryption_hal_disable + 0x000000004037b8b8 0x17 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004037b8b8 spi_flash_encryption_hal_disable + *fill* 0x000000004037b8cf 0x1 + .text.spi_flash_encryption_hal_prepare + 0x000000004037b8d0 0x34 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004037b8d0 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x000000004037b904 0x25 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004037b904 spi_flash_encryption_hal_done + *fill* 0x000000004037b929 0x3 + .text.spi_flash_encryption_hal_destroy + 0x000000004037b92c 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004037b92c spi_flash_encryption_hal_destroy + *fill* 0x000000004037b93b 0x0 + *fill* 0x000000004037b93b 0x0 + *fill* 0x000000004037b93b 0x0 + *fill* 0x000000004037b93b 0x1 + .text.spi_flash_encryption_hal_check + 0x000000004037b93c 0x11 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x000000004037b93c spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037b94d 0x3 + .text.spi_flash_hal_gpspi_device_config + 0x000000004037b950 0x13c esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037b950 spi_flash_hal_gpspi_device_config + .text.spi_flash_hal_gpspi_configure_host_io_mode + 0x000000004037ba8c 0x292 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037ba8c spi_flash_hal_gpspi_configure_host_io_mode + *fill* 0x000000004037bd1e 0x2 + .text.spi_flash_hal_gpspi_common_command + 0x000000004037bd20 0x1ec esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037bd20 spi_flash_hal_gpspi_common_command + .text.spi_flash_hal_gpspi_read + 0x000000004037bf0c 0x114 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037bf0c spi_flash_hal_gpspi_read + *fill* 0x000000004037c020 0x0 + .text.spi_flash_hal_gpspi_poll_cmd_done + 0x000000004037c020 0xf esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037c020 spi_flash_hal_gpspi_poll_cmd_done + *fill* 0x000000004037c02f 0x0 + *fill* 0x000000004037c02f 0x1 + .text.spi_flash_hal_gpspi_supports_direct_write + 0x000000004037c030 0x7 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037c030 spi_flash_hal_gpspi_supports_direct_write + *fill* 0x000000004037c037 0x1 + .text.spi_flash_hal_gpspi_supports_direct_read + 0x000000004037c038 0x7 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037c038 spi_flash_hal_gpspi_supports_direct_read + *fill* 0x000000004037c03f 0x1 + .text.spi_flash_hal_gpspi_check_status + 0x000000004037c040 0x17 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x000000004037c040 spi_flash_hal_gpspi_check_status + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037c057 0x1 + .text.spi_flash_hal_configure_host_io_mode + 0x000000004037c058 0x25c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c058 spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x000000004037c2b4 0x1b0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c2b4 spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x000000004037c464 0xd0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c464 spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x000000004037c534 0x26 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c534 spi_flash_hal_erase_chip + *fill* 0x000000004037c55a 0x2 + .text.spi_flash_hal_erase_sector + 0x000000004037c55c 0x5e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c55c spi_flash_hal_erase_sector + *fill* 0x000000004037c5ba 0x2 + .text.spi_flash_hal_erase_block + 0x000000004037c5bc 0x57 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c5bc spi_flash_hal_erase_block + *fill* 0x000000004037c613 0x1 + .text.spi_flash_hal_program_page + 0x000000004037c614 0xa6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c614 spi_flash_hal_program_page + *fill* 0x000000004037c6ba 0x2 + .text.spi_flash_hal_set_write_protect + 0x000000004037c6bc 0x40 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c6bc spi_flash_hal_set_write_protect + .text.spi_flash_hal_setup_read_suspend + 0x000000004037c6fc 0x13 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x16 (size before relaxing) + 0x000000004037c6fc spi_flash_hal_setup_read_suspend + *fill* 0x000000004037c70f 0x1 + .text.spi_flash_hal_setup_auto_suspend_mode + 0x000000004037c710 0x3f esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c710 spi_flash_hal_setup_auto_suspend_mode + *fill* 0x000000004037c74f 0x1 + .text.spi_flash_hal_setup_auto_resume_mode + 0x000000004037c750 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c750 spi_flash_hal_setup_auto_resume_mode + .text.spi_flash_hal_disable_auto_suspend_mode + 0x000000004037c768 0x3f esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c768 spi_flash_hal_disable_auto_suspend_mode + *fill* 0x000000004037c7a7 0x1 + .text.spi_flash_hal_disable_auto_resume_mode + 0x000000004037c7a8 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c7a8 spi_flash_hal_disable_auto_resume_mode + .text.spi_flash_hal_device_config + 0x000000004037c7c0 0xf0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0xf8 (size before relaxing) + 0x000000004037c7c0 spi_flash_hal_device_config + *fill* 0x000000004037c8b0 0x0 + .text.spi_flash_hal_poll_cmd_done + 0x000000004037c8b0 0xf esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c8b0 spi_flash_hal_poll_cmd_done + *fill* 0x000000004037c8bf 0x0 + *fill* 0x000000004037c8bf 0x0 + *fill* 0x000000004037c8bf 0x0 + *fill* 0x000000004037c8bf 0x0 + *fill* 0x000000004037c8bf 0x1 + .text.spi_flash_hal_check_status + 0x000000004037c8c0 0x29 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c8c0 spi_flash_hal_check_status + *fill* 0x000000004037c8e9 0x0 + *fill* 0x000000004037c8e9 0x0 + *fill* 0x000000004037c8e9 0x0 + *fill* 0x000000004037c8e9 0x3 + .text.spi_flash_hal_resume + 0x000000004037c8ec 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c8ec spi_flash_hal_resume + .text.spi_flash_hal_suspend + 0x000000004037c904 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x000000004037c904 spi_flash_hal_suspend + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) + .text.periph_ll_get_clk_en_reg + 0x000000004037c91c 0x75 esp-idf/hal/libhal.a(systimer_hal.c.obj) + *fill* 0x000000004037c991 0x3 + .text.periph_ll_get_rst_en_reg + 0x000000004037c994 0x75 esp-idf/hal/libhal.a(systimer_hal.c.obj) + *fill* 0x000000004037ca09 0x3 + .text.systimer_hal_init + 0x000000004037ca0c 0x48 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x4c (size before relaxing) + 0x000000004037ca0c systimer_hal_init + .text.systimer_hal_get_counter_value + 0x000000004037ca54 0x59 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037ca54 systimer_hal_get_counter_value + *fill* 0x000000004037caad 0x3 + .text.systimer_hal_set_alarm_target + 0x000000004037cab0 0x77 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cab0 systimer_hal_set_alarm_target + *fill* 0x000000004037cb27 0x1 + .text.systimer_hal_set_alarm_period + 0x000000004037cb28 0x83 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cb28 systimer_hal_set_alarm_period + *fill* 0x000000004037cbab 0x1 + .text.systimer_hal_counter_value_advance + 0x000000004037cbac 0x60 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cbac systimer_hal_counter_value_advance + .text.systimer_hal_select_alarm_mode + 0x000000004037cc0c 0x47 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cc0c systimer_hal_select_alarm_mode + *fill* 0x000000004037cc53 0x1 + .text.systimer_hal_connect_alarm_counter + 0x000000004037cc54 0x24 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cc54 systimer_hal_connect_alarm_counter + *fill* 0x000000004037cc78 0x0 + *fill* 0x000000004037cc78 0x0 + *fill* 0x000000004037cc78 0x0 + *fill* 0x000000004037cc78 0x0 + *fill* 0x000000004037cc78 0x0 + .text.systimer_hal_enable_alarm_int + 0x000000004037cc78 0x1e esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cc78 systimer_hal_enable_alarm_int + *fill* 0x000000004037cc96 0x2 + .text.systimer_hal_enable_counter + 0x000000004037cc98 0x21 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037cc98 systimer_hal_enable_counter + *fill* 0x000000004037ccb9 0x0 + *fill* 0x000000004037ccb9 0x3 + .text.systimer_hal_counter_can_stall_by_cpu + 0x000000004037ccbc 0x61 esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x000000004037ccbc systimer_hal_counter_can_stall_by_cpu + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037cd1d 0x3 + .text.wdt_hal_init + 0x000000004037cd20 0x27b esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037cd20 wdt_hal_init + *fill* 0x000000004037cf9b 0x1 + .text.wdt_hal_config_stage + 0x000000004037cf9c 0x169 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037cf9c wdt_hal_config_stage + *fill* 0x000000004037d105 0x3 + .text.wdt_hal_write_protect_disable + 0x000000004037d108 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d108 wdt_hal_write_protect_disable + *fill* 0x000000004037d12a 0x2 + .text.wdt_hal_enable + 0x000000004037d12c 0x50 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d12c wdt_hal_enable + .text.wdt_hal_disable + 0x000000004037d17c 0x34 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d17c wdt_hal_disable + .text.wdt_hal_handle_intr + 0x000000004037d1b0 0x50 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d1b0 wdt_hal_handle_intr + .text.wdt_hal_feed + 0x000000004037d200 0x2a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d200 wdt_hal_feed + *fill* 0x000000004037d22a 0x2 + .text.wdt_hal_set_flashboot_en + 0x000000004037d22c 0x4d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d22c wdt_hal_set_flashboot_en + *fill* 0x000000004037d279 0x0 + *fill* 0x000000004037d279 0x0 + *fill* 0x000000004037d279 0x0 + *fill* 0x000000004037d279 0x3 + .text.wdt_hal_write_protect_enable + 0x000000004037d27c 0x1e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d27c wdt_hal_write_protect_enable + *fill* 0x000000004037d29a 0x0 + *fill* 0x000000004037d29a 0x0 + *fill* 0x000000004037d29a 0x2 + .text.wdt_hal_is_enabled + 0x000000004037d29c 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x000000004037d29c wdt_hal_is_enabled + *libheap.a:heap_tlsf.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037d2be 0x2 + .text.default_walker + 0x000000004037d2c0 0x22 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000004037d2e2 0x2 + .text.tlsf_walk_pool + 0x000000004037d2e4 0x3e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037d2e4 tlsf_walk_pool + *fill* 0x000000004037d322 0x2 + .text.tlsf_add_pool + 0x000000004037d324 0x138 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037d324 tlsf_add_pool + .text.tlsf_create + 0x000000004037d45c 0x20 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x23 (size before relaxing) + 0x000000004037d45c tlsf_create + *fill* 0x000000004037d47c 0x0 + .text.tlsf_get_pool + 0x000000004037d47c 0xa esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0xd (size before relaxing) + 0x000000004037d47c tlsf_get_pool + *fill* 0x000000004037d486 0x2 + .text.tlsf_create_with_pool + 0x000000004037d488 0x1c esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x24 (size before relaxing) + 0x000000004037d488 tlsf_create_with_pool + .text.tlsf_malloc + 0x000000004037d4a4 0x346 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037d4a4 tlsf_malloc + *fill* 0x000000004037d7ea 0x2 + .text.tlsf_free + 0x000000004037d7ec 0x34c esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037d7ec tlsf_free + .text.tlsf_realloc + 0x000000004037db38 0x480 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x488 (size before relaxing) + 0x000000004037db38 tlsf_realloc + *fill* 0x000000004037dfb8 0x0 + .text.control_construct + 0x000000004037dfb8 0x3f esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000004037dff7 0x0 + *fill* 0x000000004037dff7 0x0 + *fill* 0x000000004037dff7 0x1 + .text.tlsf_block_size + 0x000000004037dff8 0x16 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037dff8 tlsf_block_size + *fill* 0x000000004037e00e 0x2 + .text.tlsf_size + 0x000000004037e010 0x8 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037e010 tlsf_size + .text.tlsf_block_size_min + 0x000000004037e018 0x7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037e018 tlsf_block_size_min + *fill* 0x000000004037e01f 0x1 + .text.tlsf_pool_overhead + 0x000000004037e020 0x7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0x000000004037e020 tlsf_pool_overhead + *fill* 0x000000004037e027 0x0 + *fill* 0x000000004037e027 0x0 + *fill* 0x000000004037e027 0x0 + *fill* 0x000000004037e027 0x0 + *libheap.a:multi_heap.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037e027 0x1 + .text.assert_valid_block + 0x000000004037e028 0x38 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x3c (size before relaxing) + .text.multi_heap_get_allocated_size_impl + 0x000000004037e060 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x000000004037e060 multi_heap_get_allocated_size + 0x000000004037e060 multi_heap_get_allocated_size_impl + .text.multi_heap_register_impl + 0x000000004037e06c 0x54 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x60 (size before relaxing) + 0x000000004037e06c multi_heap_register + 0x000000004037e06c multi_heap_register_impl + .text.multi_heap_malloc_impl + 0x000000004037e0c0 0x52 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x5e (size before relaxing) + 0x000000004037e0c0 multi_heap_malloc_impl + 0x000000004037e0c0 multi_heap_malloc + *fill* 0x000000004037e112 0x2 + .text.multi_heap_free_impl + 0x000000004037e114 0x44 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x54 (size before relaxing) + 0x000000004037e114 multi_heap_free + 0x000000004037e114 multi_heap_free_impl + 0x000000004037e114 multi_heap_aligned_free + .text.multi_heap_realloc_impl + 0x000000004037e158 0x7a esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x8e (size before relaxing) + 0x000000004037e158 multi_heap_realloc_impl + 0x000000004037e158 multi_heap_realloc + *fill* 0x000000004037e1d2 0x2 + .text.multi_heap_get_info_impl + 0x000000004037e1d4 0x5c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x68 (size before relaxing) + 0x000000004037e1d4 multi_heap_get_info_impl + 0x000000004037e1d4 multi_heap_get_info + .text.multi_heap_get_info_tlsf + 0x000000004037e230 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_set_lock + 0x000000004037e254 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004037e254 multi_heap_set_lock + *fill* 0x000000004037e25b 0x0 + *fill* 0x000000004037e25b 0x0 + *fill* 0x000000004037e25b 0x1 + .text.multi_heap_minimum_free_size_impl + 0x000000004037e25c 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004037e25c multi_heap_minimum_free_size + 0x000000004037e25c multi_heap_minimum_free_size_impl + *fill* 0x000000004037e26a 0x0 + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x000000004037e26a 0x2 + .text.esp_log_write + 0x000000004037e26c 0x26 esp-idf/log/liblog.a(log.c.obj) + 0x000000004037e26c esp_log_write + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x000000004037e292 0x2 + .text.esp_log_early_timestamp + 0x000000004037e294 0x1f esp-idf/log/liblog.a(log_freertos.c.obj) + 0x000000004037e294 esp_log_early_timestamp + *fill* 0x000000004037e2b3 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x000000004037e2b3 0x1 + .text.esp_log_impl_lock_timeout + 0x000000004037e2b4 0x3c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x44 (size before relaxing) + 0x000000004037e2b4 esp_log_impl_lock_timeout + *fill* 0x000000004037e2f0 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + .text.esp_log_impl_unlock + 0x000000004037e2f0 0x1b esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1f (size before relaxing) + 0x000000004037e2f0 esp_log_impl_unlock + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x000000004037e30b 0x1 + .text.esp_log_timestamp + 0x000000004037e30c 0x4f esp-idf/log/liblog.a(log_freertos.c.obj) + 0x5b (size before relaxing) + 0x000000004037e30c esp_log_timestamp + *fill* 0x000000004037e35b 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037e35b 0x1 + .text.abort 0x000000004037e35c 0x8d esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x000000004037e35c abort + *fill* 0x000000004037e3e9 0x0 + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037e3e9 0x3 + .text.malloc 0x000000004037e3ec 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x000000004037e3ec pvalloc + 0x000000004037e3ec valloc + 0x000000004037e3ec malloc + .text.realloc 0x000000004037e3f8 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004037e3f8 realloc + *fill* 0x000000004037e409 0x3 + .text.free 0x000000004037e40c 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x000000004037e40c free + 0x000000004037e40c cfree + *fill* 0x000000004037e416 0x2 + .text._malloc_r + 0x000000004037e418 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x000000004037e418 _malloc_r + .text._free_r 0x000000004037e424 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x000000004037e424 _free_r + *fill* 0x000000004037e42e 0x2 + .text._realloc_r + 0x000000004037e430 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004037e430 _realloc_r + *fill* 0x000000004037e441 0x3 + .text._calloc_r + 0x000000004037e444 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x000000004037e444 _calloc_r + .text.calloc 0x000000004037e470 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x000000004037e470 calloc + *fill* 0x000000004037e484 0x0 + *fill* 0x000000004037e484 0x0 + *fill* 0x000000004037e484 0x0 + *fill* 0x000000004037e484 0x0 + *fill* 0x000000004037e484 0x0 + .text.newlib_include_heap_impl + 0x000000004037e484 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004037e484 newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037e489 0x3 + .text.memspi_host_read_id_hs + 0x000000004037e48c 0x85 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x89 (size before relaxing) + 0x000000004037e48c memspi_host_read_id_hs + *fill* 0x000000004037e511 0x3 + .text.memspi_host_flush_cache + 0x000000004037e514 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e514 memspi_host_flush_cache + *fill* 0x000000004037e52d 0x3 + .text.memspi_host_erase_sector + 0x000000004037e530 0x46 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e530 memspi_host_erase_sector + *fill* 0x000000004037e576 0x2 + .text.memspi_host_erase_block + 0x000000004037e578 0x47 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e578 memspi_host_erase_block + *fill* 0x000000004037e5bf 0x1 + .text.memspi_host_program_page + 0x000000004037e5c0 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e5c0 memspi_host_program_page + .text.memspi_host_init_pointers + 0x000000004037e60c 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e60c memspi_host_init_pointers + *fill* 0x000000004037e630 0x0 + .text.memspi_host_read_status_hs + 0x000000004037e630 0x34 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e630 memspi_host_read_status_hs + .text.memspi_host_erase_chip + 0x000000004037e664 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e664 memspi_host_erase_chip + .text.memspi_host_set_write_protect + 0x000000004037e688 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e688 memspi_host_set_write_protect + .text.memspi_host_write_data_slicer + 0x000000004037e6b8 0x1a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e6b8 memspi_host_write_data_slicer + *fill* 0x000000004037e6d2 0x2 + .text.memspi_host_read_data_slicer + 0x000000004037e6d4 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x000000004037e6d4 memspi_host_read_data_slicer + *fill* 0x000000004037e6e0 0x0 + *fill* 0x000000004037e6e0 0x0 + *fill* 0x000000004037e6e0 0x0 + *fill* 0x000000004037e6e0 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_boya_probe + 0x000000004037e6e0 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x000000004037e6e0 spi_flash_chip_boya_probe + *fill* 0x000000004037e709 0x3 + .text.spi_flash_chip_boya_get_caps + 0x000000004037e70c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x000000004037e70c spi_flash_chip_boya_get_caps + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037e713 0x1 + .text.spi_flash_chip_gd_probe + 0x000000004037e714 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004037e714 spi_flash_chip_gd_probe + *fill* 0x000000004037e755 0x3 + .text.spi_flash_chip_gd_set_io_mode + 0x000000004037e758 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004037e758 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x000000004037e79c 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + 0x000000004037e79c spi_flash_chip_gd_get_io_mode + *fill* 0x000000004037e7b8 0x0 + .text.spi_flash_chip_gd_get_caps + 0x000000004037e7b8 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004037e7b8 spi_flash_chip_gd_get_caps + *fill* 0x000000004037e7d1 0x0 + *fill* 0x000000004037e7d1 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037e7d1 0x3 + .text.spi_flash_chip_generic_detect_size + 0x000000004037e7d4 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037e7d4 spi_flash_chip_generic_detect_size + *fill* 0x000000004037e806 0x2 + .text.spi_flash_chip_generic_write_encrypted + 0x000000004037e808 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037e808 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x000000004037e8d8 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x000000004037e8d8 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x000000004037e90c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037e90c spi_flash_common_write_status_16b_wrsr + *fill* 0x000000004037e921 0x3 + .text.spi_flash_chip_generic_write + 0x000000004037e924 0xb2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037e924 spi_flash_chip_generic_write + *fill* 0x000000004037e9d6 0x2 + .text.spi_flash_chip_generic_get_write_protect + 0x000000004037e9d8 0x3e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037e9d8 spi_flash_chip_generic_get_write_protect + *fill* 0x000000004037ea16 0x2 + .text.spi_flash_chip_generic_yield + 0x000000004037ea18 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x48 (size before relaxing) + 0x000000004037ea18 spi_flash_chip_generic_yield + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x000000004037ea5c 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x58 (size before relaxing) + 0x000000004037ea5c spi_flash_chip_generic_suspend_cmd_conf + .text.spi_flash_chip_generic_read_unique_id + 0x000000004037eab0 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x88 (size before relaxing) + 0x000000004037eab0 spi_flash_chip_generic_read_unique_id + .text.spi_flash_chip_generic_config_host_io_mode + 0x000000004037eb34 0xe6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037eb34 spi_flash_chip_generic_config_host_io_mode + *fill* 0x000000004037ec1a 0x2 + .text.spi_flash_chip_generic_read + 0x000000004037ec1c 0xb1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xbd (size before relaxing) + 0x000000004037ec1c spi_flash_chip_generic_read + *fill* 0x000000004037eccd 0x3 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x000000004037ecd0 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ecd0 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x000000004037ece5 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x000000004037ece8 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x20 (size before relaxing) + 0x000000004037ece8 spi_flash_chip_generic_get_io_mode + .text.spi_flash_common_read_status_8b_rdsr + 0x000000004037ed04 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ed04 spi_flash_common_read_status_8b_rdsr + *fill* 0x000000004037ed19 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x000000004037ed1c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ed1c spi_flash_common_write_status_8b_wrsr + *fill* 0x000000004037ed31 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x000000004037ed34 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ed34 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x000000004037ed49 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x000000004037ed4c 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ed4c spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_probe + 0x000000004037ed64 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ed64 spi_flash_chip_generic_probe + *fill* 0x000000004037ed6b 0x1 + .text.spi_flash_chip_generic_reset + 0x000000004037ed6c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ed6c spi_flash_chip_generic_reset + *fill* 0x000000004037edc4 0x0 + .text.spi_flash_chip_generic_erase_chip + 0x000000004037edc4 0x71 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037edc4 spi_flash_chip_generic_erase_chip + *fill* 0x000000004037ee35 0x3 + .text.spi_flash_chip_generic_erase_sector + 0x000000004037ee38 0x71 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ee38 spi_flash_chip_generic_erase_sector + *fill* 0x000000004037eea9 0x3 + .text.spi_flash_chip_generic_erase_block + 0x000000004037eeac 0x71 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037eeac spi_flash_chip_generic_erase_block + *fill* 0x000000004037ef1d 0x3 + .text.spi_flash_chip_generic_page_program + 0x000000004037ef20 0x69 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ef20 spi_flash_chip_generic_page_program + *fill* 0x000000004037ef89 0x3 + .text.spi_flash_chip_generic_set_write_protect + 0x000000004037ef8c 0x57 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037ef8c spi_flash_chip_generic_set_write_protect + *fill* 0x000000004037efe3 0x1 + .text.spi_flash_chip_generic_read_reg + 0x000000004037efe4 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037efe4 spi_flash_chip_generic_read_reg + *fill* 0x000000004037eff6 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x000000004037eff8 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037eff8 spi_flash_chip_generic_wait_idle + .text.spi_flash_chip_generic_get_caps + 0x000000004037f090 0x17 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037f090 spi_flash_chip_generic_get_caps + *fill* 0x000000004037f0a7 0x1 + .text.spi_flash_common_read_qe_sr + 0x000000004037f0a8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x000000004037f0d8 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x0 + *fill* 0x000000004037f106 0x2 + .text.spi_flash_common_set_io_mode + 0x000000004037f108 0xaa esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004037f108 spi_flash_common_set_io_mode + *fill* 0x000000004037f1b2 0x0 + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037f1b2 0x2 + .text.spi_flash_chip_issi_probe + 0x000000004037f1b4 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000004037f1b4 spi_flash_chip_issi_probe + *fill* 0x000000004037f1dd 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x000000004037f1e0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x000000004037f1e0 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x000000004037f1f4 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x20 (size before relaxing) + 0x000000004037f1f4 spi_flash_chip_issi_get_io_mode + *fill* 0x000000004037f210 0x0 + .text.spi_flash_chip_issi_get_caps + 0x000000004037f210 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000004037f210 spi_flash_chip_issi_get_caps + *fill* 0x000000004037f217 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037f217 0x1 + .text.spi_flash_chip_mxic_read_unique_id + 0x000000004037f218 0x21 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x25 (size before relaxing) + 0x000000004037f218 spi_flash_chip_mxic_read_unique_id + *fill* 0x000000004037f239 0x3 + .text.spi_flash_chip_mxic_probe + 0x000000004037f23c 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000004037f23c spi_flash_chip_mxic_probe + *fill* 0x000000004037f252 0x2 + .text.spi_flash_chip_mxic_get_caps + 0x000000004037f254 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000004037f254 spi_flash_chip_mxic_get_caps + *fill* 0x000000004037f25b 0x0 + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037f25b 0x1 + .text.spi_flash_command_winbond_program_4B + 0x000000004037f25c 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_page_program + 0x000000004037f2a0 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004037f2a0 spi_flash_chip_winbond_page_program + *fill* 0x000000004037f2d5 0x3 + .text.spi_flash_command_winbond_erase_sector_4B + 0x000000004037f2d8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text.spi_flash_chip_winbond_erase_sector + 0x000000004037f318 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004037f318 spi_flash_chip_winbond_erase_sector + *fill* 0x000000004037f36a 0x2 + .text.spi_flash_command_erase_block_4B + 0x000000004037f36c 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000004037f3ae 0x2 + .text.spi_flash_chip_winbond_erase_block + 0x000000004037f3b0 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004037f3b0 spi_flash_chip_winbond_erase_block + *fill* 0x000000004037f402 0x2 + .text.spi_flash_chip_winbond_read + 0x000000004037f404 0xbd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xc9 (size before relaxing) + 0x000000004037f404 spi_flash_chip_winbond_read + *fill* 0x000000004037f4c1 0x3 + .text.spi_flash_chip_winbond_probe + 0x000000004037f4c4 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004037f4c4 spi_flash_chip_winbond_probe + *fill* 0x000000004037f4da 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x000000004037f4dc 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000004037f4dc spi_flash_chip_winbond_get_caps + *fill* 0x000000004037f4f5 0x0 + *fill* 0x000000004037f4f5 0x0 + *fill* 0x000000004037f4f5 0x0 + *fill* 0x000000004037f4f5 0x0 + *fill* 0x000000004037f4f5 0x0 + *libspi_flash.a:spi_flash_rom_patch.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_timing_tuning.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *fill* 0x000000004037f4f5 0x3 + .text 0x000000004037f4f8 0x137 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + 0x000000004037f4f8 xthal_window_spill_nw + 0x000000004037f4f8 xthal_spill_registers_into_stack_nw + 0x000000004037f60c xthal_window_spill + *fill* 0x000000004037f62f 0x0 + *fill* 0x000000004037f62f 0x1 + .text 0x000000004037f630 0x2f /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x000000004037f630 xthal_restore_extra_nw + *fill* 0x000000004037f65f 0x1 + .text 0x000000004037f660 0x2f /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + 0x000000004037f660 xthal_save_extra_nw + *libxtensa.a:eri.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr_asm.*(.literal .literal.* .text .text.*) + *fill* 0x000000004037f68f 0x1 + .text 0x000000004037f690 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x000000004037f690 xt_ints_on + 0x000000004037f6a8 xt_ints_off + +.dram0.dummy 0x000000003fc88000 0x76c4 + 0x000000003fc8f6c4 . = (ORIGIN (dram0_0_seg) + MAX ((_iram_end - _diram_i_start), 0x0)) + *fill* 0x000000003fc88000 0x76c4 + +.dram0.data 0x000000003fc8f6d0 0x2424 + 0x000000003fc8f6d0 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x000000003fc8f6d0 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_NAME(.esp_system_init_fn) SORT_BY_NAME(.esp_system_init_fn.*)) + .esp_system_init_fn.init_components0 + 0x000000003fc8f6d0 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003fc8f6d8 _esp_system_init_fn_array_end = ABSOLUTE (.) + *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data.*) + .data.first_call$3807 + 0x000000003fc8f6d8 0x1 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + *fill* 0x000000003fc8f6d9 0x3 + .data.s_keys_lock + 0x000000003fc8f6dc 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.wdt0_context + 0x000000003fc8f6e4 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data.hooks_spinlock + 0x000000003fc8f6ec 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.s_panic_uart + 0x000000003fc8f6f4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x000000003fc8f6f8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.s_fd_table + 0x000000003fc8f700 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_registered_select_lock + 0x000000003fc8f7c0 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_context + 0x000000003fc8f7c8 0x6c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_log_print_func + 0x000000003fc8f834 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.esp_log_default_level + 0x000000003fc8f838 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x000000003fc8f838 esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x000000003fc8f83c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.spinlock + 0x000000003fc8f840 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.mux 0x000000003fc8f848 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x000000003fc8f850 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x000000003fc8f850 _xt_interrupt_table + 0x000000003fc8fa50 _xt_exception_table + .data.s_timer_lock + 0x000000003fc8fc50 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data.timestamp_id$5596 + 0x000000003fc8fc58 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .data.s_time_update_lock + 0x000000003fc8fc68 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x000000003fc8fc68 s_time_update_lock + .data 0x000000003fc8fc70 0xc0c esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x000000003fc8fc70 port_IntStack + 0x000000003fc90870 port_IntStackTop + 0x000000003fc90874 port_switch_flag + *fill* 0x000000003fc9087c 0x4 + .data 0x000000003fc90880 0x20 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003fc90880 _xt_coproc_owner_sa + .data.xTaskQueueMutex + 0x000000003fc908a0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x000000003fc908a8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x000000003fc908b0 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.esp_ipc_isr_end_fl + 0x000000003fc9094c 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x000000003fc9094c esp_ipc_isr_end_fl + .data 0x000000003fc90950 0x10 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .data.periph_spinlock + 0x000000003fc90960 0x8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data.uart_selectlock + 0x000000003fc90968 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .data.uart_context + 0x000000003fc90970 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .data.s_flash_op_cpu + 0x000000003fc909a0 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_flash_registered_chips + 0x000000003fc909a4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x000000003fc909a4 esp_flash_registered_chips + .data.default_registered_chips + 0x000000003fc909a8 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.reason_spinlock + 0x000000003fc909c4 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.twdt_spinlock + 0x000000003fc909cc 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x000000003fc909d4 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x000000003fc909d4 __global_locale_ptr + *(.dram1 .dram1.*) + .dram1.23 0x000000003fc909d8 0x4 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x000000003fc909d8 uxTopUsedPriority + .dram1.26 0x000000003fc909dc 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003fc909dc g_flash_guard_default_ops + .dram1.24 0x000000003fc909f4 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x000000003fc909f4 rom_spiflash_api_funcs + .dram1.23 0x000000003fc909f8 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.25 0x000000003fc90a08 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.24 0x000000003fc90a28 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.42 0x000000003fc90a4c 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.41 0x000000003fc90a70 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.5 0x000000003fc90a80 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x000000003fc90a80 esp_flash_noos_functions + .dram1.2 0x000000003fc90aa4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc90aa4 rom_flash_chip_dummy + .dram1.1 0x000000003fc90aa8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.0 0x000000003fc90ac0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc90ac6 0x2 + .dram1.3 0x000000003fc90ac8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc90ac8 spi_flash_chip_generic_timeout + .dram1.19 0x000000003fc90adc 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.29 0x000000003fc90b34 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc90b4d 0x3 + .dram1.28 0x000000003fc90b50 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .dram1.27 0x000000003fc90b58 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003fc90b5e 0x2 + .dram1.26 0x000000003fc90b60 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x000000003fc90b66 _coredump_dram_start = ABSOLUTE (.) + *(.dram1.coredump .dram1.coredump.*) + 0x000000003fc90b66 _coredump_dram_end = ABSOLUTE (.) + *libapp_trace.a:app_trace.*(.rodata .rodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.*) + 0x000000003fc90b66 _bt_data_start = ABSOLUTE (.) + *libbt.a:(.data .data.*) + 0x000000003fc90b68 . = ALIGN (0x4) + *fill* 0x000000003fc90b66 0x2 + 0x000000003fc90b68 _bt_data_end = ABSOLUTE (.) + 0x000000003fc90b68 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(.data .data.*) + 0x000000003fc90b68 . = ALIGN (0x4) + 0x000000003fc90b68 _btdm_data_end = ABSOLUTE (.) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.*) + .rodata.rtc_clk_xtal_freq_get.str1.4 + 0x000000003fc90b68 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc90baf 0x1 + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003fc90bb0 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x000000003fc90beb 0x1 + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 + 0x000000003fc90bec 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_system.a:esp_err.*(.rodata .rodata.*) + *fill* 0x000000003fc90c15 0x3 + .rodata.esp_error_check_failed_print.str1.4 + 0x000000003fc90c18 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.4 + 0x000000003fc90c74 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:ubsan.*(.rodata .rodata.*) + *libgcc.a:_divsf3.*(.rodata .rodata.*) + *libgcov.a:(.rodata .rodata.*) + *libhal.a:cpu_hal.*(.rodata .rodata.*) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.*) + *libhal.a:soc_hal.*(.rodata .rodata.*) + .rodata 0x000000003fc90c84 0x18 esp-idf/hal/libhal.a(soc_hal.c.obj) + *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.*) + *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) + *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.*) + *libhal.a:spi_hal_iram.*(.rodata .rodata.*) + *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.*) + *libhal.a:systimer_hal.*(.rodata .rodata.*) + .rodata.systimer_hal_set_alarm_period.str1.4 + 0x000000003fc90c9c 0x55 esp-idf/hal/libhal.a(systimer_hal.c.obj) + *libhal.a:wdt_hal_iram.*(.rodata .rodata.*) + *libheap.a:heap_tlsf.*(.rodata .rodata.*) + *fill* 0x000000003fc90cf1 0x3 + .rodata.integrity_walker.str1.4 + 0x000000003fc90cf4 0x96 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc90d8a 0x2 + .rodata.default_walker.str1.4 + 0x000000003fc90d8c 0x26 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc90db2 0x2 + .rodata.tlsf_add_pool.str1.4 + 0x000000003fc90db4 0x142 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc90ef6 0x2 + .rodata.tlsf_remove_pool.str1.4 + 0x000000003fc90ef8 0xe6 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc90fde 0x2 + .rodata.tlsf_create.str1.4 + 0x000000003fc90fe0 0x32 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91012 0x2 + .rodata.tlsf_malloc.str1.4 + 0x000000003fc91014 0x1a7 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc911bb 0x1 + .rodata.tlsf_free.str1.4 + 0x000000003fc911bc 0x148 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.tlsf_realloc.str1.4 + 0x000000003fc91304 0x2e esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91332 0x2 + .rodata.__func__$3677 + 0x000000003fc91334 0x10 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3875 + 0x000000003fc91344 0xd esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91351 0x3 + .rodata.__func__$3664 + 0x000000003fc91354 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91365 0x3 + .rodata.__func__$3652 + 0x000000003fc91368 0xd esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91375 0x3 + .rodata.__func__$3658 + 0x000000003fc91378 0x11 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91389 0x3 + .rodata.__func__$3862 + 0x000000003fc9138c 0xa esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91396 0x2 + .rodata.__func__$3647 + 0x000000003fc91398 0xc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3670 + 0x000000003fc913a4 0x10 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .rodata.__func__$3699 + 0x000000003fc913b4 0x13 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc913c7 0x1 + .rodata.__func__$3607 + 0x000000003fc913c8 0x16 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc913de 0x2 + .rodata.__func__$3692 + 0x000000003fc913e0 0x12 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc913f2 0x2 + .rodata.__func__$3616 + 0x000000003fc913f4 0x12 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *fill* 0x000000003fc91406 0x2 + .rodata.__func__$3624 + 0x000000003fc91408 0x12 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + *libheap.a:multi_heap.*(.rodata .rodata.*) + *fill* 0x000000003fc9141a 0x2 + .rodata.assert_valid_block.str1.4 + 0x000000003fc9141c 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003fc9144e 0x2 + .rodata.multi_heap_register_impl.str1.4 + 0x000000003fc91450 0x2d esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003fc9147d 0x3 + .rodata.multi_heap_get_first_block.str1.4 + 0x000000003fc91480 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003fc9148d 0x3 + .rodata.__func__$5246 + 0x000000003fc91490 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5205 + 0x000000003fc914a8 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + *libnewlib.a:abort.*(.rodata .rodata.*) + *fill* 0x000000003fc914c1 0x3 + .rodata.abort.str1.4 + 0x000000003fc914c4 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:heap.*(.rodata .rodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.*) + 0x000000003fc914ea _nimble_data_start = ABSOLUTE (.) + *libnimble.a:(.data .data.*) + 0x000000003fc914ec . = ALIGN (0x4) + *fill* 0x000000003fc914ea 0x2 + 0x000000003fc914ec _nimble_data_end = ABSOLUTE (.) + *libphy.a:(.rodata .rodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.*) + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003fc914ec 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x000000003fc91510 0x4a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc9155a 0x2 + .rodata.memspi_host_program_page.str1.4 + 0x000000003fc9155c 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc9157a 0x2 + .rodata.__func__$5682 + 0x000000003fc9157c 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc91595 0x3 + .rodata.__func__$5674 + 0x000000003fc91598 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$5668 + 0x000000003fc915b0 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc915c9 0x3 + .rodata.TAG 0x000000003fc915cc 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *fill* 0x000000003fc915d3 0x1 + .rodata.esp_flash_gpspi_host + 0x000000003fc915d4 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.*) + .rodata.esp_flash_chip_boya + 0x000000003fc9162c 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0x000000003fc9162c esp_flash_chip_boya + .rodata.chip_name + 0x000000003fc916a4 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.*) + *fill* 0x000000003fc916a9 0x3 + .rodata.esp_flash_chip_gd + 0x000000003fc916ac 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003fc916ac esp_flash_chip_gd + .rodata.chip_name + 0x000000003fc91724 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.*) + *fill* 0x000000003fc91727 0x1 + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003fc91728 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc91772 0x2 + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 + 0x000000003fc91774 0x5f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc917d3 0x1 + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x000000003fc917d4 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc91826 0x2 + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003fc91828 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc9186b 0x1 + .rodata.__func__$4148 + 0x000000003fc9186c 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003fc91895 0x3 + .rodata.esp_flash_chip_generic + 0x000000003fc91898 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003fc91898 esp_flash_chip_generic + .rodata.chip_name + 0x000000003fc91910 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x000000003fc91918 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.*) + *fill* 0x000000003fc91925 0x3 + .rodata.esp_flash_chip_issi + 0x000000003fc91928 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003fc91928 esp_flash_chip_issi + .rodata.chip_name + 0x000000003fc919a0 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.*) + *fill* 0x000000003fc919a5 0x3 + .rodata.spi_flash_chip_mxic_read_unique_id.str1.4 + 0x000000003fc919a8 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *fill* 0x000000003fc919e9 0x3 + .rodata.esp_flash_chip_mxic + 0x000000003fc919ec 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x000000003fc919ec esp_flash_chip_mxic + .rodata.chip_name + 0x000000003fc91a64 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.*) + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x000000003fc91a69 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x000000003fc91a69 0x3 + .rodata.esp_flash_chip_winbond + 0x000000003fc91a6c 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x000000003fc91a6c esp_flash_chip_winbond + .rodata.chip_name + 0x000000003fc91ae4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x000000003fc91aec 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_rom_patch.*(.rodata .rodata.*) + *libspi_flash.a:spi_flash_timing_tuning.*(.rodata .rodata.*) + 0x000000003fc91af4 _data_end = ABSOLUTE (.) + 0x000000003fc91af4 . = ALIGN (0x4) + +.noinit 0x000000003fc91af4 0x0 + 0x000000003fc91af4 . = ALIGN (0x4) + 0x000000003fc91af4 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x000000003fc91af4 . = ALIGN (0x4) + 0x000000003fc91af4 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x000000003fc91af8 0x9d8 + 0x000000003fc91af8 . = ALIGN (0x8) + 0x000000003fc91af8 _bss_start = ABSOLUTE (.) + *(.ext_ram.bss*) + *(.bss .bss.*) + .bss.s_app_elf_sha256$3806 + 0x000000003fc91af8 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .bss.s_pthread_cfg_key + 0x000000003fc91b00 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x000000003fc91b04 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x000000003fc91b08 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003fc91b08 s_keys + .bss.s_resume_cores + 0x000000003fc91b0c 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003fc91b0d 0x3 + .bss.s_cpu_inited + 0x000000003fc91b10 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003fc91b12 0x2 + .bss.s_cpu_up 0x000000003fc91b14 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss.int_wdt_app_cpu_ticked + 0x000000003fc91b16 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x000000003fc91b16 int_wdt_app_cpu_ticked + *fill* 0x000000003fc91b17 0x1 + .bss.iwdt_context + 0x000000003fc91b18 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.shutdown_handlers + 0x000000003fc91b20 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_system_full_inited + 0x000000003fc91b34 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003fc91b35 0x3 + .bss.s_system_inited + 0x000000003fc91b38 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003fc91b3a 0x6 + .bss.g_startup_time + 0x000000003fc91b40 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003fc91b40 g_startup_time + .bss.g_exc_frames + 0x000000003fc91b48 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x000000003fc91b48 g_exc_frames + .bss.tick_cb 0x000000003fc91b50 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x000000003fc91b90 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.s_panic_abort_details + 0x000000003fc91bd0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss.g_panic_abort + 0x000000003fc91bd4 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x000000003fc91bd4 g_panic_abort + *fill* 0x000000003fc91bd5 0x3 + .bss.s_fd_table_lock + 0x000000003fc91bd8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x000000003fc91bdc 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x000000003fc91be0 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_registered_select_num + 0x000000003fc91c00 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_selects + 0x000000003fc91c04 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_log_cache_misses + 0x000000003fc91c08 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x000000003fc91c0c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x000000003fc91c10 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x000000003fc91c14 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x000000003fc91d0c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$5574 + 0x000000003fc91d10 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x000000003fc91d14 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.alloc_failed_callback + 0x000000003fc91d18 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.s_esp_rtc_time_lock + 0x000000003fc91d1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss.non_iram_int_disabled_flag + 0x000000003fc91d20 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003fc91d22 0x2 + .bss.non_iram_int_disabled + 0x000000003fc91d24 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x000000003fc91d2c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x000000003fc91d34 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.s_apb_freq + 0x000000003fc91d38 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_cur_pll_freq + 0x000000003fc91d3c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_timer_task + 0x000000003fc91d40 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x000000003fc91d44 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_correction_us + 0x000000003fc91d48 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.systimer_hal + 0x000000003fc91d50 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_alarm_handler + 0x000000003fc91d54 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.s_timer_interrupt_handle + 0x000000003fc91d58 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .bss.port_uxOldInterruptState + 0x000000003fc91d5c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc91d5c port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x000000003fc91d64 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc91d64 port_uxCriticalNesting + .bss.port_interruptNesting + 0x000000003fc91d6c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003fc91d6c port_interruptNesting + .bss.port_xSchedulerRunning + 0x000000003fc91d74 0x8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x000000003fc91d74 port_xSchedulerRunning + .bss.systimer_hal$5860 + 0x000000003fc91d7c 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.s_handled_systicks + 0x000000003fc91d80 0x8 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss.xSwitchingContext + 0x000000003fc91d88 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxSchedulerSuspended + 0x000000003fc91d90 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x000000003fc91d98 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x000000003fc91da0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x000000003fc91da4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x000000003fc91da8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x000000003fc91dac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x000000003fc91db4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x000000003fc91db8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x000000003fc91dbc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x000000003fc91dc0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x000000003fc91dc4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003fc91dc8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x000000003fc91ddc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003fc91de0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003fc91df4 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x000000003fc91e1c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x000000003fc91e20 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x000000003fc91e24 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x000000003fc91e38 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x000000003fc91e4c 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCB + 0x000000003fc92040 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003fc92040 pxCurrentTCB + .bss.s_common_recursive_mutex + 0x000000003fc92048 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003fc92048 __lock___atexit_recursive_mutex + 0x000000003fc92048 __lock___sinit_recursive_mutex + 0x000000003fc92048 __lock___sfp_recursive_mutex + 0x000000003fc92048 __lock___env_recursive_mutex + 0x000000003fc92048 __lock___malloc_recursive_mutex + .bss.s_common_mutex + 0x000000003fc9209c 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x000000003fc9209c __lock___at_quick_exit_mutex + 0x000000003fc9209c __lock___tz_mutex + 0x000000003fc9209c __lock___arc4random_mutex + 0x000000003fc9209c __lock___dd_hash_mutex + .bss.s_reent 0x000000003fc920f0 0xf0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss.s_time_lock + 0x000000003fc921e0 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x000000003fc921e4 0x4 + .bss.s_adjtime_total_correction_us + 0x000000003fc921e8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_start_us + 0x000000003fc921f0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x000000003fc921f8 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x000000003fc921fc 0x4 + .bss.s_microseconds_offset + 0x000000003fc92200 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x000000003fc92200 s_microseconds_offset + .bss.s_ipc_wait + 0x000000003fc92208 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_func_arg + 0x000000003fc92210 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_func 0x000000003fc92218 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x000000003fc92220 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_ipc_sem + 0x000000003fc92228 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x000000003fc92230 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x000000003fc92238 0x8 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .bss.s_stall_state + 0x000000003fc92240 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .bss.ref_counts + 0x000000003fc92244 0x25 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x000000003fc92269 0x3 + .bss.p_uart_obj + 0x000000003fc9226c 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .bss.s_flash_op_complete + 0x000000003fc92278 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x000000003fc92279 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003fc9227a 0x2 + .bss.s_flash_op_mutex + 0x000000003fc9227c 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x000000003fc92280 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_mmap_last_handle + 0x000000003fc92288 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_page_refcnt + 0x000000003fc9228c 0x200 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_entries_head + 0x000000003fc9248c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_flash_guard_ops + 0x000000003fc92490 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x000000003fc92494 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003fc92494 esp_flash_default_chip + .bss.s_partition_list_lock + 0x000000003fc92498 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss.s_partition_list + 0x000000003fc9249c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss.reason 0x000000003fc924a0 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.twdt_config + 0x000000003fc924a8 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.twdt_context + 0x000000003fc924ac 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.curr_partition$5014 + 0x000000003fc924b4 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x000000003fc924b8 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + 0x000000003fc924b8 environ + *(.ext_ram.bss .ext_ram.bss.*) + *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) + *(COMMON) + COMMON 0x000000003fc924bc 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003fc924bc registered_heaps + COMMON 0x000000003fc924c0 0xc esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x000000003fc924c0 esp_ipc_func_arg + 0x000000003fc924c4 esp_ipc_isr_start_fl + 0x000000003fc924c8 esp_ipc_func + 0x000000003fc924cc _bt_bss_start = ABSOLUTE (.) + *libbt.a:(.bss .bss.* COMMON) + 0x000000003fc924cc . = ALIGN (0x4) + 0x000000003fc924cc _bt_bss_end = ABSOLUTE (.) + 0x000000003fc924cc _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(.bss .bss.* COMMON) + 0x000000003fc924cc . = ALIGN (0x4) + 0x000000003fc924cc _btdm_bss_end = ABSOLUTE (.) + 0x000000003fc924cc _nimble_bss_start = ABSOLUTE (.) + *libnimble.a:(.bss .bss.* COMMON) + 0x000000003fc924cc . = ALIGN (0x4) + 0x000000003fc924cc _nimble_bss_end = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + 0x000000003fc924d0 . = ALIGN (0x8) + *fill* 0x000000003fc924cc 0x4 + 0x000000003fc924d0 _bss_end = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.text 0x0000000042000020 0x155a7 + 0x0000000042000020 _stext = . + 0x0000000042000020 _instruction_reserved_start = ABSOLUTE (.) + 0x0000000042000020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libxtensa.a:xtensa_intr_asm.* *libxtensa.a:eri.* *libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:cpu_util.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .literal.esp_ota_get_app_description + 0x0000000042000020 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .literal.esp_ota_init_app_elf_sha256 + 0x0000000042000024 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .literal.esp_pthread_cfg_key_destructor + 0x0000000042000028 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_init + 0x000000004200002c 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.find_key + 0x000000004200003c 0x10 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_key_create + 0x000000004200004c 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x0000000042000050 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.start_other_core + 0x0000000042000050 0x38 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4c (size before relaxing) + .literal.intr_matrix_clear + 0x0000000042000088 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x8 (size before relaxing) + .literal.startup_resume_other_cores + 0x000000004200008c 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.select_rtc_slow_clk + 0x0000000042000090 0x20 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x34 (size before relaxing) + .literal.esp_clk_init + 0x00000000420000b0 0x54 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x80 (size before relaxing) + .literal.esp_perip_clk_init + 0x0000000042000104 0x24 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x2c (size before relaxing) + .literal.esp_cache_err_int_init + 0x0000000042000128 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x14 (size before relaxing) + .literal.esp_int_wdt_init + 0x0000000042000130 0x14 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x28 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x0000000042000144 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.do_global_ctors + 0x0000000042000148 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .literal.do_system_init_fn + 0x0000000042000150 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + .literal.do_core_init + 0x000000004200015c 0x2c esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x64 (size before relaxing) + .literal.do_secondary_init + 0x0000000042000188 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x0000000042000188 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x98 (size before relaxing) + .literal.frame_to_panic_info + 0x00000000420001b8 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x10 (size before relaxing) + .literal.panic_handler + 0x00000000420001c0 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x80 (size before relaxing) + .literal.print_state_for_core + 0x0000000042000208 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x0000000042000210 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x0000000042000210 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_init + 0x0000000042000214 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x8 (size before relaxing) + .literal.print_debug_exception_details + 0x0000000042000218 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x0000000042000238 0x14 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.panic_print_registers + 0x000000004200024c 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x0000000042000280 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x0000000042000290 0xc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_backtrace + 0x000000004200029c 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.esp_vApplicationIdleHook + 0x00000000420002a0 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x00000000420002a4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x00000000420002a8 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_char + 0x00000000420002ac 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_str + 0x00000000420002b0 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x00000000420002b0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x00000000420002b4 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x00000000420002b4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_reconfigure_wdts + 0x00000000420002b8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.panic_abort + 0x00000000420002c0 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.esp_panic_handler + 0x00000000420002c0 0x3c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xf4 (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x00000000420002fc 0x8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.brownout_hal_config + 0x0000000042000304 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x24 (size before relaxing) + .literal.get_vfs_for_fd + 0x0000000042000324 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_common + 0x0000000042000330 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.get_vfs_for_path + 0x0000000042000338 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.translate_path + 0x0000000042000340 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register + 0x0000000042000354 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_open + 0x0000000042000354 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_write + 0x0000000042000360 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x0000000042000360 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x0000000042000360 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x0000000042000360 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_fstat + 0x0000000042000364 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x0000000042000364 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x0000000042000364 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x0000000042000364 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x0000000042000364 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x0000000042000364 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x0000000042000368 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.uart_tx_char + 0x000000004200036c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_rx_char + 0x0000000042000370 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_read_char + 0x0000000042000370 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.unregister_select + 0x0000000042000370 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_end_select + 0x0000000042000380 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.register_select + 0x0000000042000380 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_start_select + 0x0000000042000380 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x38 (size before relaxing) + .literal.select_notif_callback_isr + 0x0000000042000384 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_tcflush + 0x0000000042000384 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_tcdrain + 0x0000000042000384 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x0000000042000384 0x50 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8c (size before relaxing) + .literal.uart_tcsetattr + 0x00000000420003d4 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x9c (size before relaxing) + .literal.uart_access + 0x00000000420003d4 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_open + 0x00000000420003e4 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_fcntl + 0x00000000420003e8 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_fstat + 0x00000000420003f4 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_close + 0x00000000420003fc 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x0000000042000400 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_fsync + 0x0000000042000408 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_read + 0x0000000042000418 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_write + 0x000000004200041c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_dev_uart_register + 0x0000000042000420 0x48 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x54 (size before relaxing) + .literal.heap_caps_alloc_failed + 0x0000000042000468 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x000000004200046c 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_get_info + 0x0000000042000474 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x0000000042000478 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x0000000042000478 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x000000004200048c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x0000000042000490 0x3c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x88 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x00000000420004cc 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x00000000420004d4 0x2c esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x4c (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x0000000042000500 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x0000000042000504 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_slowclk_cal_get + 0x0000000042000508 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x000000004200050c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x1c (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x000000004200051c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.insert_vector_desc + 0x000000004200051c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x0000000042000520 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x0000000042000520 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.find_desc_for_source + 0x000000004200052c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x0000000042000538 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .literal.get_available_int + 0x0000000042000540 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .literal.esp_intr_enable_source + 0x0000000042000544 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_disable_source + 0x0000000042000548 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_intrstatus + 0x000000004200054c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x74 (size before relaxing) + .literal.esp_intr_alloc + 0x0000000042000564 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_intr_free + 0x0000000042000564 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x38 (size before relaxing) + .literal.esp_intr_free_cb + 0x0000000042000570 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.xt_int_has_handler + 0x0000000042000570 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x0000000042000578 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.timer_process_alarm + 0x000000004200057c 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x44 (size before relaxing) + .literal.timer_task + 0x00000000420005a0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_init + 0x00000000420005a4 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x24 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x00000000420005c0 0x18 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_timer_impl_init + 0x00000000420005d8 0x3c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x58 (size before relaxing) + .literal.esp_newlib_locks_init + 0x0000000042000614 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x30 (size before relaxing) + .literal.raise_r_stub + 0x0000000042000638 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_newlib_init + 0x0000000042000638 0x10 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x1c (size before relaxing) + .literal.syscall_not_implemented + 0x0000000042000648 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.syscall_not_implemented_aborts + 0x0000000042000648 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.adjust_boot_time + 0x0000000042000648 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x20 (size before relaxing) + .literal.get_adjusted_boot_time + 0x0000000042000650 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x0000000042000654 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x1c (size before relaxing) + .literal.settimeofday + 0x0000000042000654 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.esp_newlib_time_init + 0x0000000042000654 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x0000000042000654 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal.esp_time_impl_set_boot_time + 0x000000004200065c 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x0000000042000668 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x0000000042000668 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_sync_counters_rtc_and_frc + 0x0000000042000668 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_time_impl_init + 0x0000000042000668 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4 (size before relaxing) + .literal.app_main + 0x0000000042000668 0x44 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x6c (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x00000000420006ac 0x30 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x44 (size before relaxing) + .literal.esp_ipc_init + 0x00000000420006dc 0x18 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .literal.esp_ipc_call + 0x00000000420006f4 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x00000000420006f4 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_isr_init_cpu + 0x00000000420006f4 0x14 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x28 (size before relaxing) + .literal.esp_ipc_isr_init + 0x0000000042000708 0x10 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x1c (size before relaxing) + .literal.periph_ll_get_clk_en_reg + 0x0000000042000718 0x4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_get_rst_en_reg + 0x000000004200071c 0x8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_module_enable + 0x0000000042000724 0x44 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x70 (size before relaxing) + .literal.uart_pattern_queue_update + 0x0000000042000768 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_intr_mask_and_return_prev + 0x000000004200076c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_word_length + 0x000000004200077c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_word_length + 0x0000000042000784 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_stop_bits + 0x0000000042000788 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_get_stop_bits + 0x0000000042000790 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_parity + 0x0000000042000794 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_get_parity + 0x0000000042000798 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_baudrate + 0x000000004200079c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_get_baudrate + 0x00000000420007a0 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_enable_intr_mask + 0x00000000420007a4 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_wait_tx_done + 0x00000000420007a8 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x54 (size before relaxing) + .literal.uart_get_buffered_data_len + 0x00000000420007b4 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_flush_input + 0x00000000420007b8 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x80 (size before relaxing) + .literal.uart_is_driver_installed + 0x00000000420007cc 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x00000000420007cc 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x00000000420007cc 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.bootloader_init_mem + 0x00000000420007d0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.bootloader_flash_update_id + 0x00000000420007d4 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_read_flash_id + 0x00000000420007d8 0xc esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.spi_flash_init_lock + 0x00000000420007e4 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x00000000420007f4 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x00000000420007f8 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_cache2phys + 0x00000000420007fc 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x2c (size before relaxing) + .literal.is_safe_write_address + 0x0000000042000810 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_init + 0x0000000042000810 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .literal.check_chip_pointer_default + 0x0000000042000810 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .literal.esp_flash_read_chip_id + 0x0000000042000818 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_init_default_chip + 0x000000004200081c 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3c (size before relaxing) + .literal.esp_flash_app_init + 0x000000004200083c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x000000004200083c 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.load_partitions + 0x0000000042000848 0x40 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x6c (size before relaxing) + .literal.ensure_partitions_loaded + 0x0000000042000888 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x0000000042000890 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x0000000042000890 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x0000000042000890 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x000000004200089c 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x000000004200089c 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x00000000420008a4 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_crosscore_int_init + 0x00000000420008a8 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.find_task_in_twdt_list + 0x00000000420008c4 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.reset_hw_timer + 0x00000000420008c8 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x14 (size before relaxing) + .literal.task_wdt_isr + 0x00000000420008cc 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc0 (size before relaxing) + .literal.esp_task_wdt_init + 0x0000000042000914 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x78 (size before relaxing) + .literal.esp_task_wdt_add + 0x0000000042000928 0x10 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x0000000042000938 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x24 (size before relaxing) + .literal.idle_hook_cb + 0x0000000042000938 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.uart_hal_set_baudrate + 0x0000000042000938 0x18 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_get_baudrate + 0x0000000042000950 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_init + 0x0000000042000950 0x20 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x30 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x0000000042000970 0x4 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x0000000042000974 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.interrupt_controller_hal_desc_type + 0x0000000042000974 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x4 (size before relaxing) + .literal.interrupt_controller_hal_desc_level + 0x0000000042000974 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x4 (size before relaxing) + .literal.interrupt_controller_hal_desc_flags + 0x0000000042000974 0x0 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x4 (size before relaxing) + .literal.interrupt_controller_hal_desc_table + 0x0000000042000974 0x4 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .literal.esp_err_to_name + 0x0000000042000978 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_ota_get_running_partition + 0x0000000042000980 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal 0x0000000042000998 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + 0x18 (size before relaxing) + .literal 0x00000000420009a4 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + 0x4 (size before relaxing) + .literal 0x00000000420009a4 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x44 (size before relaxing) + .literal 0x00000000420009c8 0x2c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x94 (size before relaxing) + .literal 0x00000000420009f4 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + 0xc (size before relaxing) + .literal 0x00000000420009f4 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x00000000420009f8 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0xc (size before relaxing) + .literal 0x00000000420009f8 0xc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x7c (size before relaxing) + .literal 0x0000000042000a04 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + 0x30 (size before relaxing) + .literal 0x0000000042000a04 0x14 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x40 (size before relaxing) + .literal 0x0000000042000a18 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x1c (size before relaxing) + .literal 0x0000000042000a1c 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x14 (size before relaxing) + .literal 0x0000000042000a1c 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x34 (size before relaxing) + .literal 0x0000000042000a20 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x38 (size before relaxing) + .literal 0x0000000042000a20 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x30 (size before relaxing) + .literal 0x0000000042000a24 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x0000000042000a24 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0x24 (size before relaxing) + .literal 0x0000000042000a28 0x88 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x1a0 (size before relaxing) + .literal 0x0000000042000ab0 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x0000000042000ab4 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0xac (size before relaxing) + .literal 0x0000000042000ad8 0x38 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0x1e4 (size before relaxing) + .literal 0x0000000042000b10 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x14 (size before relaxing) + .literal 0x0000000042000b10 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x1c (size before relaxing) + .literal 0x0000000042000b10 0x7c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0x228 (size before relaxing) + .literal 0x0000000042000b8c 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x48 (size before relaxing) + .literal 0x0000000042000b8c 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + 0x4 (size before relaxing) + .literal 0x0000000042000b8c 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x8 (size before relaxing) + .literal 0x0000000042000b90 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0xe8 (size before relaxing) + .literal 0x0000000042000bb4 0x8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x20 (size before relaxing) + .literal 0x0000000042000bbc 0x24 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x78 (size before relaxing) + .literal 0x0000000042000be0 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x4 (size before relaxing) + .literal 0x0000000042000be0 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x4 (size before relaxing) + .literal.rtc_init + 0x0000000042000be0 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x12c (size before relaxing) + .literal.esp_register_shutdown_handler + 0x0000000042000c9c 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x0000000042000ca0 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x8 (size before relaxing) + .literal.esp_startup_start_app + 0x0000000042000ca0 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x0000000042000cb0 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2c (size before relaxing) + .literal.main_task + 0x0000000042000cbc 0x14 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x44 (size before relaxing) + .literal.heap_bubble_down + 0x0000000042000cd0 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.s_log_level_get_and_unlock + 0x0000000042000cd4 0x20 esp-idf/log/liblog.a(log.c.obj) + 0x3c (size before relaxing) + .literal.esp_log_writev + 0x0000000042000cf4 0x8 esp-idf/log/liblog.a(log.c.obj) + 0xc (size before relaxing) + .text.esp_ota_get_app_description + 0x0000000042000cfc 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x0000000042000cfc esp_ota_get_app_description + .text.esp_ota_init_app_elf_sha256 + 0x0000000042000d04 0xf esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x0000000042000d04 esp_ota_init_app_elf_sha256 + *fill* 0x0000000042000d13 0x1 + .text.esp_pthread_cfg_key_destructor + 0x0000000042000d14 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x0000000042000d22 0x2 + .text.esp_pthread_init + 0x0000000042000d24 0x3a esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3e (size before relaxing) + 0x0000000042000d24 esp_pthread_init + *fill* 0x0000000042000d5e 0x2 + .text.find_key + 0x0000000042000d60 0x2b esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x0000000042000d8b 0x1 + .text.pthread_key_create + 0x0000000042000d8c 0x4c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042000d8c pthread_key_create + .text.pthread_key_delete + 0x0000000042000dd8 0x45 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042000dd8 pthread_key_delete + *fill* 0x0000000042000e1d 0x3 + .text.start_other_core + 0x0000000042000e20 0xf9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xfd (size before relaxing) + *fill* 0x0000000042000f19 0x3 + .text.intr_matrix_clear + 0x0000000042000f1c 0x2a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x0000000042000f46 0x2 + .text.startup_resume_other_cores + 0x0000000042000f48 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x0000000042000f48 startup_resume_other_cores + .text.select_rtc_slow_clk + 0x0000000042000f58 0x97 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x9a (size before relaxing) + *fill* 0x0000000042000fef 0x1 + .text.esp_clk_init + 0x0000000042000ff0 0x11d esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x125 (size before relaxing) + 0x0000000042000ff0 esp_clk_init + *fill* 0x000000004200110d 0x3 + .text.esp_perip_clk_init + 0x0000000042001110 0xd6 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x0000000042001110 esp_perip_clk_init + *fill* 0x00000000420011e6 0x2 + .text.esp_cache_err_int_init + 0x00000000420011e8 0x46 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x4a (size before relaxing) + 0x00000000420011e8 esp_cache_err_int_init + *fill* 0x000000004200122e 0x2 + .text.esp_int_wdt_init + 0x0000000042001230 0x54 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x58 (size before relaxing) + 0x0000000042001230 esp_int_wdt_init + .text.esp_int_wdt_cpu_init + 0x0000000042001284 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x0000000042001284 esp_int_wdt_cpu_init + .text.do_global_ctors + 0x00000000420012b0 0x19 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x00000000420012c9 0x3 + .text.do_system_init_fn + 0x00000000420012cc 0x37 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x0000000042001303 0x1 + .text.do_core_init + 0x0000000042001304 0x7e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xaa (size before relaxing) + *fill* 0x0000000042001382 0x2 + .text.do_secondary_init + 0x0000000042001384 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000420013e2 0x2 + .text.start_cpu0_default + 0x00000000420013e4 0x150 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x160 (size before relaxing) + 0x00000000420013e4 start_cpu0 + .text.frame_to_panic_info + 0x0000000042001534 0x3d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x41 (size before relaxing) + *fill* 0x0000000042001571 0x3 + .text.panic_handler + 0x0000000042001574 0x166 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x176 (size before relaxing) + *fill* 0x00000000420016da 0x2 + .text.print_state_for_core + 0x00000000420016dc 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000042001702 0x2 + .text.print_state + 0x0000000042001704 0x4c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x54 (size before relaxing) + .text.panic_restart + 0x0000000042001750 0x9 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x0000000042001750 panic_restart + *fill* 0x0000000042001759 0x3 + .text.esp_brownout_init + 0x000000004200175c 0x1a esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x000000004200175c esp_brownout_init + *fill* 0x0000000042001776 0x2 + .text.print_debug_exception_details + 0x0000000042001778 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x68 (size before relaxing) + .text.print_illegal_instruction_details + 0x00000000420017c8 0x52 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000004200181a 0x2 + .text.panic_print_registers + 0x000000004200181c 0xdb esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x113 (size before relaxing) + 0x000000004200181c panic_print_registers + *fill* 0x00000000420018f7 0x1 + .text.panic_arch_fill_info + 0x00000000420018f8 0x36 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x00000000420018f8 panic_arch_fill_info + *fill* 0x000000004200192e 0x2 + .text.panic_soc_fill_info + 0x0000000042001930 0x5a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042001930 panic_soc_fill_info + *fill* 0x000000004200198a 0x2 + .text.panic_print_backtrace + 0x000000004200198c 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x000000004200198c panic_print_backtrace + .text.esp_vApplicationIdleHook + 0x00000000420019ac 0x34 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x37 (size before relaxing) + 0x00000000420019ac esp_vApplicationIdleHook + *fill* 0x00000000420019e0 0x0 + .text.esp_register_freertos_idle_hook_for_cpu + 0x00000000420019e0 0x5d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x00000000420019e0 esp_register_freertos_idle_hook_for_cpu + *fill* 0x0000000042001a3d 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x0000000042001a40 0x5a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x0000000042001a40 esp_register_freertos_tick_hook_for_cpu + *fill* 0x0000000042001a9a 0x2 + .text.panic_print_char + 0x0000000042001a9c 0x2e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042001a9c panic_print_char + *fill* 0x0000000042001aca 0x2 + .text.panic_print_str + 0x0000000042001acc 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042001acc panic_print_str + *fill* 0x0000000042001ae6 0x2 + .text.print_abort_details + 0x0000000042001ae8 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x0000000042001af5 0x3 + .text.panic_print_hex + 0x0000000042001af8 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x0000000042001af8 panic_print_hex + *fill* 0x0000000042001b24 0x0 + .text.panic_print_dec + 0x0000000042001b24 0x40 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x0000000042001b24 panic_print_dec + *fill* 0x0000000042001b64 0x0 + .text.esp_panic_handler_reconfigure_wdts + 0x0000000042001b64 0x6a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042001b64 esp_panic_handler_reconfigure_wdts + *fill* 0x0000000042001bce 0x2 + .text.panic_abort + 0x0000000042001bd0 0x17 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x0000000042001bd0 panic_abort + *fill* 0x0000000042001be7 0x1 + .text.esp_panic_handler + 0x0000000042001be8 0x1d9 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20f (size before relaxing) + 0x0000000042001be8 esp_panic_handler + *fill* 0x0000000042001dc1 0x3 + .text.uart_hal_rxfifo_rst + 0x0000000042001dc4 0x27 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x0000000042001dc4 uart_hal_rxfifo_rst + *fill* 0x0000000042001deb 0x1 + .text.brownout_hal_config + 0x0000000042001dec 0xd4 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x0000000042001dec brownout_hal_config + .text.get_vfs_for_fd + 0x0000000042001ec0 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x0000000042001efe 0x2 + .text.esp_vfs_register_common + 0x0000000042001f00 0xfe esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x0000000042001ffe 0x2 + .text.get_vfs_for_path + 0x0000000042002000 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x0000000042002070 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000420020ae 0x2 + .text.esp_vfs_register + 0x00000000420020b0 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x00000000420020b0 esp_vfs_register + .text.esp_vfs_open + 0x00000000420020cc 0xd8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420020cc esp_vfs_open + 0x00000000420020cc _open_r + .text.esp_vfs_write + 0x00000000420021a4 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000420021a4 esp_vfs_write + 0x00000000420021a4 _write_r + .text.esp_vfs_lseek + 0x0000000042002218 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x0000000042002218 _lseek_r + 0x0000000042002218 esp_vfs_lseek + .text.esp_vfs_read + 0x000000004200228c 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x000000004200228c esp_vfs_read + 0x000000004200228c _read_r + .text.esp_vfs_close + 0x0000000042002300 0xa7 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xab (size before relaxing) + 0x0000000042002300 esp_vfs_close + 0x0000000042002300 _close_r + *fill* 0x00000000420023a7 0x1 + .text.esp_vfs_fstat + 0x00000000420023a8 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x74 (size before relaxing) + 0x00000000420023a8 esp_vfs_fstat + 0x00000000420023a8 _fstat_r + .text.esp_vfs_stat + 0x0000000042002418 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4b (size before relaxing) + 0x0000000042002418 _stat_r + 0x0000000042002418 esp_vfs_stat + *fill* 0x000000004200245f 0x1 + .text.esp_vfs_link + 0x0000000042002460 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x0000000042002460 esp_vfs_link + 0x0000000042002460 _link_r + .text.esp_vfs_unlink + 0x00000000420024c8 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x48 (size before relaxing) + 0x00000000420024c8 esp_vfs_unlink + 0x00000000420024c8 _unlink_r + .text.esp_vfs_rename + 0x000000004200250c 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x000000004200250c _rename_r + 0x000000004200250c esp_vfs_rename + .text.esp_vfs_select_triggered + 0x0000000042002574 0x4d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042002574 esp_vfs_select_triggered + *fill* 0x00000000420025c1 0x3 + .text.esp_vfs_select_triggered_isr + 0x00000000420025c4 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000420025c4 esp_vfs_select_triggered_isr + *fill* 0x000000004200260d 0x3 + .text.uart_tx_char + 0x0000000042002610 0x3b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000004200264b 0x1 + .text.uart_rx_char + 0x000000004200264c 0x39 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x0000000042002685 0x3 + .text.uart_read_char + 0x0000000042002688 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.unregister_select + 0x00000000420026ac 0x64 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_end_select + 0x0000000042002710 0x41 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000042002751 0x3 + .text.register_select + 0x0000000042002754 0x51 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000420027a5 0x3 + .text.uart_start_select + 0x00000000420027a8 0x195 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1a5 (size before relaxing) + *fill* 0x000000004200293d 0x3 + .text.select_notif_callback_isr + 0x0000000042002940 0xf6 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x0000000042002a36 0x2 + .text.uart_tcflush + 0x0000000042002a38 0x3a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x42 (size before relaxing) + *fill* 0x0000000042002a72 0x2 + .text.uart_tcdrain + 0x0000000042002a74 0x2e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000042002aa2 0x2 + .text.uart_tcgetattr + 0x0000000042002aa4 0x376 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x382 (size before relaxing) + *fill* 0x0000000042002e1a 0x2 + .text.uart_tcsetattr + 0x0000000042002e1c 0x326 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x33e (size before relaxing) + *fill* 0x0000000042003142 0x2 + .text.uart_access + 0x0000000042003144 0x5c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_open + 0x00000000420031a0 0x5d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x61 (size before relaxing) + *fill* 0x00000000420031fd 0x3 + .text.uart_fcntl + 0x0000000042003200 0x6d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000004200326d 0x3 + .text.uart_fstat + 0x0000000042003270 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000420032a5 0x3 + .text.uart_close + 0x00000000420032a8 0x22 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000420032ca 0x2 + .text.uart_return_char + 0x00000000420032cc 0x28 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fsync + 0x00000000420032f4 0x45 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x49 (size before relaxing) + *fill* 0x0000000042003339 0x3 + .text.uart_read + 0x000000004200333c 0xba esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc6 (size before relaxing) + *fill* 0x00000000420033f6 0x2 + .text.uart_write + 0x00000000420033f8 0x94 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_register + 0x000000004200348c 0x82 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x000000004200348c esp_vfs_dev_uart_register + *fill* 0x000000004200350e 0x2 + .text.heap_caps_alloc_failed + 0x0000000042003510 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x0000000042003526 0x2 + .text.heap_caps_get_minimum_free_size + 0x0000000042003528 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042003528 heap_caps_get_minimum_free_size + *fill* 0x0000000042003555 0x3 + .text.heap_caps_get_info + 0x0000000042003558 0x6f esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x73 (size before relaxing) + 0x0000000042003558 heap_caps_get_info + *fill* 0x00000000420035c7 0x1 + .text.heap_caps_get_largest_free_block + 0x00000000420035c8 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000420035c8 heap_caps_get_largest_free_block + *fill* 0x00000000420035d9 0x3 + .text.register_heap + 0x00000000420035dc 0x2f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004200360b 0x1 + .text.heap_caps_enable_nonos_stack_heaps + 0x000000004200360c 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000004200360c heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x0000000042003638 0x2da esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2f2 (size before relaxing) + 0x0000000042003638 heap_caps_init + *fill* 0x0000000042003912 0x2 + .text.s_get_num_reserved_regions + 0x0000000042003914 0x13 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x0000000042003927 0x1 + .text.s_prepare_reserved_regions + 0x0000000042003928 0xcd esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x00000000420039f5 0x3 + .text.soc_get_available_memory_region_max_count + 0x00000000420039f8 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x00000000420039f8 soc_get_available_memory_region_max_count + *fill* 0x0000000042003a0a 0x2 + .text.soc_get_available_memory_regions + 0x0000000042003a0c 0x105 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x10d (size before relaxing) + 0x0000000042003a0c soc_get_available_memory_regions + *fill* 0x0000000042003b11 0x3 + .text.esp_clk_slowclk_cal_get + 0x0000000042003b14 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x0000000042003b14 esp_clk_slowclk_cal_get + *fill* 0x0000000042003b21 0x3 + .text.esp_rtc_get_time_us + 0x0000000042003b24 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x95 (size before relaxing) + 0x0000000042003b24 esp_rtc_get_time_us + *fill* 0x0000000042003bb5 0x3 + .text.esp_clk_slowclk_cal_set + 0x0000000042003bb8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x0000000042003bb8 esp_clk_slowclk_cal_set + *fill* 0x0000000042003bc8 0x0 + .text.insert_vector_desc + 0x0000000042003bc8 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x0000000042003c18 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x0000000042003c3d 0x3 + .text.get_desc_for_int + 0x0000000042003c40 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x74 (size before relaxing) + .text.find_desc_for_source + 0x0000000042003cb0 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x0000000042003d1c 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe0 (size before relaxing) + .text.get_available_int + 0x0000000042003de8 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x160 (size before relaxing) + .text.esp_intr_enable_source + 0x0000000042003f34 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000042003f34 esp_intr_enable_source + *fill* 0x0000000042003f47 0x1 + .text.esp_intr_disable_source + 0x0000000042003f48 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000042003f48 esp_intr_disable_source + *fill* 0x0000000042003f5b 0x1 + .text.esp_intr_alloc_intrstatus + 0x0000000042003f5c 0x2a9 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x2b1 (size before relaxing) + 0x0000000042003f5c esp_intr_alloc_intrstatus + *fill* 0x0000000042004205 0x3 + .text.esp_intr_alloc + 0x0000000042004208 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x0000000042004208 esp_intr_alloc + .text.esp_intr_free + 0x0000000042004220 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x0000000042004220 esp_intr_free + .text.esp_intr_free_cb + 0x0000000042004318 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe (size before relaxing) + *fill* 0x0000000042004322 0x2 + .text.xt_int_has_handler + 0x0000000042004324 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000042004324 xt_int_has_handler + *fill* 0x0000000042004347 0x1 + .text.xt_set_interrupt_handler + 0x0000000042004348 0x4f esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x0000000042004348 xt_set_interrupt_handler + *fill* 0x0000000042004397 0x1 + .text.timer_process_alarm + 0x0000000042004398 0x13c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.timer_task + 0x00000000420044d4 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_init + 0x00000000420044ec 0x61 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x69 (size before relaxing) + 0x00000000420044ec esp_timer_init + *fill* 0x000000004200454d 0x3 + .text.esp_timer_impl_init_system_time + 0x0000000042004550 0x66 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x6a (size before relaxing) + 0x0000000042004550 esp_timer_impl_init_system_time + *fill* 0x00000000420045b6 0x2 + .text.esp_timer_impl_init + 0x00000000420045b8 0xe2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0xea (size before relaxing) + 0x00000000420045b8 esp_timer_impl_init + *fill* 0x000000004200469a 0x2 + .text.esp_newlib_locks_init + 0x000000004200469c 0x56 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x5a (size before relaxing) + 0x000000004200469c esp_newlib_locks_init + *fill* 0x00000000420046f2 0x2 + .text.raise_r_stub + 0x00000000420046f4 0xf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x0000000042004703 0x1 + .text.esp_newlib_init + 0x0000000042004704 0x2a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x2e (size before relaxing) + 0x0000000042004704 esp_newlib_init + 0x0000000042004704 esp_setup_newlib_syscalls + *fill* 0x000000004200472e 0x2 + .text.syscall_not_implemented + 0x0000000042004730 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042004730 _system_r + 0x0000000042004730 system + 0x0000000042004730 _getpid_r + 0x0000000042004730 _kill_r + *fill* 0x0000000042004741 0x3 + .text.syscall_not_implemented_aborts + 0x0000000042004744 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042004744 _exit + 0x0000000042004744 raise + 0x0000000042004744 _raise_r + 0x0000000042004744 _sbrk_r + *fill* 0x000000004200474d 0x3 + .text.adjust_boot_time + 0x0000000042004750 0x146 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14a (size before relaxing) + *fill* 0x0000000042004896 0x2 + .text.get_adjusted_boot_time + 0x0000000042004898 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x00000000420048be 0x2 + .text.adjtime_corr_stop + 0x00000000420048c0 0x34 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x38 (size before relaxing) + .text.settimeofday + 0x00000000420048f4 0x49 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x54 (size before relaxing) + 0x00000000420048f4 settimeofday + *fill* 0x000000004200493d 0x3 + .text.esp_newlib_time_init + 0x0000000042004940 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xb (size before relaxing) + 0x0000000042004940 esp_newlib_time_init + *fill* 0x0000000042004948 0x0 + .text.esp_time_impl_get_time_since_boot + 0x0000000042004948 0x1f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042004948 esp_time_impl_get_time_since_boot + *fill* 0x0000000042004967 0x1 + .text.esp_time_impl_set_boot_time + 0x0000000042004968 0x28 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042004968 esp_time_impl_set_boot_time + .text.esp_time_impl_get_boot_time + 0x0000000042004990 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x0000000042004990 esp_time_impl_get_boot_time + *fill* 0x00000000420049b7 0x1 + .text.esp_set_time_from_rtc + 0x00000000420049b8 0x2b esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x2f (size before relaxing) + 0x00000000420049b8 esp_set_time_from_rtc + *fill* 0x00000000420049e3 0x1 + .text.esp_sync_counters_rtc_and_frc + 0x00000000420049e4 0x64 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x70 (size before relaxing) + 0x00000000420049e4 esp_sync_counters_rtc_and_frc + .text.esp_time_impl_init + 0x0000000042004a48 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xb (size before relaxing) + 0x0000000042004a48 esp_time_impl_init + *fill* 0x0000000042004a50 0x0 + .text.app_main + 0x0000000042004a50 0xa0 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0xb8 (size before relaxing) + 0x0000000042004a50 app_main + .text.esp_ipc_call_and_wait + 0x0000000042004af0 0xcd esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + *fill* 0x0000000042004bbd 0x3 + .text.esp_ipc_init + 0x0000000042004bc0 0x89 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x8d (size before relaxing) + *fill* 0x0000000042004c49 0x3 + .text.esp_ipc_call + 0x0000000042004c4c 0x15 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x0000000042004c4c esp_ipc_call + *fill* 0x0000000042004c61 0x3 + .text.esp_ipc_call_blocking + 0x0000000042004c64 0x15 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x0000000042004c64 esp_ipc_call_blocking + *fill* 0x0000000042004c79 0x3 + .text.esp_ipc_isr_init_cpu + 0x0000000042004c7c 0x5c esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x63 (size before relaxing) + *fill* 0x0000000042004cd8 0x0 + .text.esp_ipc_isr_init + 0x0000000042004cd8 0x3b esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x0000000042004cd8 esp_ipc_isr_init + *fill* 0x0000000042004d13 0x1 + .text.periph_ll_get_clk_en_reg + 0x0000000042004d14 0x75 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x0000000042004d89 0x3 + .text.periph_ll_get_rst_en_reg + 0x0000000042004d8c 0x75 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x0000000042004e01 0x3 + .text.periph_module_enable + 0x0000000042004e04 0x427 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x0000000042004e04 periph_module_enable + *fill* 0x000000004200522b 0x1 + .text.uart_pattern_queue_update + 0x000000004200522c 0x46 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x0000000042005272 0x2 + .text.uart_disable_intr_mask_and_return_prev + 0x0000000042005274 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x00000000420052de 0x2 + .text.uart_set_word_length + 0x00000000420052e0 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + 0x7e (size before relaxing) + 0x00000000420052e0 uart_set_word_length + *fill* 0x000000004200535a 0x2 + .text.uart_get_word_length + 0x000000004200535c 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + 0x40 (size before relaxing) + 0x000000004200535c uart_get_word_length + .text.uart_set_stop_bits + 0x0000000042005398 0x7a esp-idf/driver/libdriver.a(uart.c.obj) + 0x7e (size before relaxing) + 0x0000000042005398 uart_set_stop_bits + *fill* 0x0000000042005412 0x2 + .text.uart_get_stop_bits + 0x0000000042005414 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042005414 uart_get_stop_bits + .text.uart_set_parity + 0x0000000042005454 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042005454 uart_set_parity + .text.uart_get_parity + 0x00000000420054a8 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420054a8 uart_get_parity + .text.uart_set_baudrate + 0x00000000420054e8 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + 0x54 (size before relaxing) + 0x00000000420054e8 uart_set_baudrate + .text.uart_get_baudrate + 0x0000000042005538 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + 0x0000000042005538 uart_get_baudrate + .text.uart_enable_intr_mask + 0x000000004200558c 0x60 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000004200558c uart_enable_intr_mask + .text.uart_wait_tx_done + 0x00000000420055ec 0x17d esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420055ec uart_wait_tx_done + *fill* 0x0000000042005769 0x3 + .text.uart_get_buffered_data_len + 0x000000004200576c 0x68 esp-idf/driver/libdriver.a(uart.c.obj) + 0x000000004200576c uart_get_buffered_data_len + .text.uart_flush_input + 0x00000000420057d4 0x1e9 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1fd (size before relaxing) + 0x00000000420057d4 uart_flush + 0x00000000420057d4 uart_flush_input + *fill* 0x00000000420059bd 0x3 + .text.uart_is_driver_installed + 0x00000000420059c0 0x1e esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420059c0 uart_is_driver_installed + *fill* 0x00000000420059de 0x2 + .text.uart_set_select_notif_callback + 0x00000000420059e0 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420059e0 uart_set_select_notif_callback + *fill* 0x00000000420059f7 0x1 + .text.uart_get_selectlock + 0x00000000420059f8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000420059f8 uart_get_selectlock + .text.bootloader_init_mem + 0x0000000042005a00 0xb esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x0000000042005a00 bootloader_init_mem + *fill* 0x0000000042005a0b 0x1 + .text.bootloader_flash_update_id + 0x0000000042005a0c 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x0000000042005a0c bootloader_flash_update_id + *fill* 0x0000000042005a1e 0x2 + .text.bootloader_read_flash_id + 0x0000000042005a20 0x2e esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x0000000042005a20 bootloader_read_flash_id + *fill* 0x0000000042005a4e 0x2 + .text.spi_flash_init_lock + 0x0000000042005a50 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x26 (size before relaxing) + 0x0000000042005a50 spi_flash_init_lock + *fill* 0x0000000042005a72 0x2 + .text.spi_flash_op_lock + 0x0000000042005a74 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000042005a74 spi_flash_op_lock + *fill* 0x0000000042005a86 0x2 + .text.spi_flash_op_unlock + 0x0000000042005a88 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000042005a88 spi_flash_op_unlock + .text.spi_flash_cache2phys + 0x0000000042005a98 0x92 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x0000000042005a98 spi_flash_cache2phys + *fill* 0x0000000042005b2a 0x2 + .text.is_safe_write_address + 0x0000000042005b2c 0x19 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x0000000042005b45 0x3 + .text.spi_flash_init + 0x0000000042005b48 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xb (size before relaxing) + 0x0000000042005b48 spi_flash_init + *fill* 0x0000000042005b50 0x0 + .text.check_chip_pointer_default + 0x0000000042005b50 0x29 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000042005b79 0x3 + .text.esp_flash_read_chip_id + 0x0000000042005b7c 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000042005b7c esp_flash_read_chip_id + .text.esp_flash_init_default_chip + 0x0000000042005b90 0xc6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x0000000042005b90 esp_flash_init_default_chip + *fill* 0x0000000042005c56 0x2 + .text.esp_flash_app_init + 0x0000000042005c58 0xd esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x10 (size before relaxing) + 0x0000000042005c58 esp_flash_app_init + *fill* 0x0000000042005c65 0x3 + .text.esp_flash_app_enable_os_functions + 0x0000000042005c68 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x0000000042005c68 esp_flash_app_enable_os_functions + .text.load_partitions + 0x0000000042005c88 0x1b0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.ensure_partitions_loaded + 0x0000000042005e38 0x54 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x0000000042005e8c 0x21 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x0000000042005ead 0x3 + .text.esp_partition_iterator_release + 0x0000000042005eb0 0xe esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x0000000042005eb0 esp_partition_iterator_release + *fill* 0x0000000042005ebe 0x2 + .text.esp_partition_next + 0x0000000042005ec0 0x88 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8c (size before relaxing) + 0x0000000042005ec0 esp_partition_next + .text.esp_partition_find + 0x0000000042005f48 0x3d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x45 (size before relaxing) + 0x0000000042005f48 esp_partition_find + *fill* 0x0000000042005f85 0x3 + .text.esp_partition_get + 0x0000000042005f88 0x19 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x1c (size before relaxing) + 0x0000000042005f88 esp_partition_get + *fill* 0x0000000042005fa1 0x3 + .text.esp_partition_main_flash_region_safe + 0x0000000042005fa4 0x39 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x3d (size before relaxing) + 0x0000000042005fa4 esp_partition_main_flash_region_safe + *fill* 0x0000000042005fdd 0x3 + .text.esp_crosscore_int_init + 0x0000000042005fe0 0x72 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x0000000042005fe0 esp_crosscore_int_init + *fill* 0x0000000042006052 0x2 + .text.find_task_in_twdt_list + 0x0000000042006054 0x2f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x0000000042006083 0x1 + .text.reset_hw_timer + 0x0000000042006084 0x34 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.task_wdt_isr + 0x00000000420060b8 0x1cb esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x1cf (size before relaxing) + *fill* 0x0000000042006283 0x1 + .text.esp_task_wdt_init + 0x0000000042006284 0x147 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x14b (size before relaxing) + 0x0000000042006284 esp_task_wdt_init + *fill* 0x00000000420063cb 0x1 + .text.esp_task_wdt_add + 0x00000000420063cc 0xd5 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd9 (size before relaxing) + 0x00000000420063cc esp_task_wdt_add + *fill* 0x00000000420064a1 0x3 + .text.esp_task_wdt_reset + 0x00000000420064a4 0x5a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x61 (size before relaxing) + 0x00000000420064a4 esp_task_wdt_reset + *fill* 0x00000000420064fe 0x2 + .text.idle_hook_cb + 0x0000000042006500 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x000000004200650a 0x2 + .text.uart_hal_set_baudrate + 0x000000004200650c 0x8d esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x000000004200650c uart_hal_set_baudrate + *fill* 0x0000000042006599 0x3 + .text.uart_hal_get_baudrate + 0x000000004200659c 0x4e esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x000000004200659c uart_hal_get_baudrate + *fill* 0x00000000420065ea 0x2 + .text.spi_flash_hal_init + 0x00000000420065ec 0xf2 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x00000000420065ec spi_flash_hal_init + *fill* 0x00000000420066de 0x2 + .text.spi_flash_hal_supports_direct_write + 0x00000000420066e0 0x25 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x00000000420066e0 spi_flash_hal_supports_direct_write + *fill* 0x0000000042006705 0x3 + .text.spi_flash_hal_supports_direct_read + 0x0000000042006708 0x24 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x0000000042006708 spi_flash_hal_supports_direct_read + .text.interrupt_controller_hal_desc_type + 0x000000004200672c 0x12 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x000000004200672c interrupt_controller_hal_desc_type + *fill* 0x000000004200673e 0x2 + .text.interrupt_controller_hal_desc_level + 0x0000000042006740 0x12 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x0000000042006740 interrupt_controller_hal_desc_level + *fill* 0x0000000042006752 0x2 + .text.interrupt_controller_hal_desc_flags + 0x0000000042006754 0x17 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x0000000042006754 interrupt_controller_hal_desc_flags + *fill* 0x000000004200676b 0x1 + .text.interrupt_controller_hal_desc_table + 0x000000004200676c 0x8 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + 0x000000004200676c interrupt_controller_hal_desc_table + .text.esp_err_to_name + 0x0000000042006774 0x2d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x0000000042006774 esp_err_to_name + *fill* 0x00000000420067a1 0x3 + .text.esp_ota_get_running_partition + 0x00000000420067a4 0x7c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x00000000420067a4 esp_ota_get_running_partition + *fill* 0x0000000042006820 0x0 + .text 0x0000000042006820 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + 0x40 (size before relaxing) + 0x0000000042006820 __assert_func + 0x000000004200684c __assert + .text 0x000000004200685c 0xd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + 0x000000004200685c __errno + *fill* 0x0000000042006869 0x3 + .text 0x000000004200686c 0x204 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x20c (size before relaxing) + 0x000000004200686c __sflush_r + 0x00000000420069c4 _fflush_r + 0x0000000042006a4c fflush + .text 0x0000000042006a70 0x238 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x257 (size before relaxing) + 0x0000000042006ab0 _cleanup_r + 0x0000000042006af8 __sfmoreglue + 0x0000000042006b30 _cleanup + 0x0000000042006b40 __sfp_lock_acquire + 0x0000000042006b50 __sfp_lock_release + 0x0000000042006b60 __sinit_lock_acquire + 0x0000000042006b70 __sinit_lock_release + 0x0000000042006b80 __sinit + 0x0000000042006bd8 __sfp + 0x0000000042006c80 __fp_lock_all + 0x0000000042006c94 __fp_unlock_all + *fill* 0x0000000042006ca8 0x0 + .text 0x0000000042006ca8 0x54 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + 0x5c (size before relaxing) + 0x0000000042006ca8 _fiprintf_r + 0x0000000042006ccc fiprintf + .text 0x0000000042006cfc 0xd4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0xec (size before relaxing) + 0x0000000042006cfc _fopen_r + 0x0000000042006dbc fopen + .text 0x0000000042006dd0 0x31 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x0000000042006dd0 _fseek_r + 0x0000000042006de8 fseek + *fill* 0x0000000042006e01 0x3 + .text 0x0000000042006e04 0x326 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x33e (size before relaxing) + 0x0000000042006e04 _fseeko_r + 0x0000000042007114 fseeko + *fill* 0x000000004200712a 0x2 + .text 0x000000004200712c 0x116 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + 0x11a (size before relaxing) + 0x000000004200712c _ftello_r + 0x0000000042007230 ftello + *fill* 0x0000000042007242 0x2 + .text 0x0000000042007244 0x2bd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x2c1 (size before relaxing) + 0x0000000042007244 __sfvwrite_r + *fill* 0x0000000042007501 0x3 + .text 0x0000000042007504 0x103 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x0000000042007504 __swhatbuf_r + 0x000000004200757c __smakebuf_r + *fill* 0x0000000042007607 0x1 + .text 0x0000000042007608 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x78 (size before relaxing) + 0x0000000042007608 _printf_r + 0x000000004200763c printf + .text 0x0000000042007678 0xba /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0xca (size before relaxing) + 0x0000000042007678 _puts_r + 0x0000000042007720 puts + *fill* 0x0000000042007732 0x2 + .text 0x0000000042007734 0xfc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x0000000042007734 cleanup_glue + 0x000000004200774c _reclaim_reent + .text 0x0000000042007830 0x134 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x144 (size before relaxing) + 0x000000004200784c __srefill_r + .text 0x0000000042007964 0xd9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0x0000000042007964 _snprintf_r + 0x00000000420079cc snprintf + *fill* 0x0000000042007a3d 0x3 + .text 0x0000000042007a40 0xb2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0xbe (size before relaxing) + 0x0000000042007a40 __sread + 0x0000000042007a70 __seofread + 0x0000000042007a78 __swrite + 0x0000000042007aac __sseek + 0x0000000042007ae0 __sclose + *fill* 0x0000000042007af2 0x2 + .text 0x0000000042007af4 0x338b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0x33cf (size before relaxing) + 0x0000000042007fb4 _svfprintf_r + *fill* 0x000000004200ae7f 0x1 + .text 0x000000004200ae80 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x000000004200ae80 gettimeofday + .text 0x000000004200ae98 0x263f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0x265b (size before relaxing) + 0x000000004200b358 __sprint_r + 0x000000004200b37c _vfiprintf_r + 0x000000004200d420 vfiprintf + *fill* 0x000000004200d4d7 0x1 + .text 0x000000004200d4d8 0x3553 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0x35af (size before relaxing) + 0x000000004200d998 _vfprintf_r + 0x0000000042010974 vfprintf + *fill* 0x0000000042010a2b 0x1 + .text 0x0000000042010a2c 0x5e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x62 (size before relaxing) + 0x0000000042010a2c vprintf + 0x0000000042010a5c _vprintf_r + *fill* 0x0000000042010a8a 0x2 + .text 0x0000000042010a8c 0xdf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x0000000042010a8c __swsetup_r + *fill* 0x0000000042010b6b 0x1 + .text 0x0000000042010b6c 0xd8c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0xde0 (size before relaxing) + 0x0000000042010c7c _dtoa_r + .text 0x00000000420118f8 0x10e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x11e (size before relaxing) + 0x00000000420118f8 _fclose_r + 0x00000000420119f4 fclose + *fill* 0x0000000042011a06 0x2 + .text 0x0000000042011a08 0x80 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + 0x0000000042011a08 __sflags + .text 0x0000000042011a88 0x2b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x0000000042011a88 __localeconv_l + 0x0000000042011a94 _localeconv_r + 0x0000000042011aa4 localeconv + *fill* 0x0000000042011ab3 0x1 + .text 0x0000000042011ab4 0x900 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x91c (size before relaxing) + 0x0000000042011ab4 _Balloc + 0x0000000042011b40 _Bfree + 0x0000000042011b80 __multadd + 0x0000000042011c04 __s2b + 0x0000000042011c9c __hi0bits + 0x0000000042011ce4 __lo0bits + 0x0000000042011d54 __i2b + 0x0000000042011d7c __multiply + 0x0000000042011e9c __pow5mult + 0x0000000042011f44 __lshift + 0x0000000042011fec __mcmp + 0x0000000042012024 __mdiff + 0x0000000042012104 __ulp + 0x000000004201214c __b2d + 0x00000000420121f0 __d2b + 0x00000000420122a0 __ratio + 0x00000000420122f4 _mprec_log10 + 0x000000004201232c __copybits + 0x0000000042012364 __any_on + .text 0x00000000420123b4 0x5c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x00000000420123b4 frexp + .text 0x0000000042012410 0x258e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x2592 (size before relaxing) + 0x00000000420128d0 __ssprint_r + 0x00000000420129dc _svfiprintf_r + *fill* 0x000000004201499e 0x2 + .text 0x00000000420149a0 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x00000000420149a0 _mbtowc_r + 0x00000000420149bc __ascii_mbtowc + .text 0x00000000420149e0 0x41 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x00000000420149e0 _wctomb_r + 0x00000000420149fc __ascii_wctomb + *fill* 0x0000000042014a21 0x0 + *fill* 0x0000000042014a21 0x0 + *fill* 0x0000000042014a21 0x3 + .text.pthread_include_pthread_impl + 0x0000000042014a24 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x0000000042014a24 pthread_include_pthread_impl + *fill* 0x0000000042014a29 0x0 + *fill* 0x0000000042014a29 0x0 + *fill* 0x0000000042014a29 0x3 + .text.pthread_include_pthread_local_storage_impl + 0x0000000042014a2c 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x0000000042014a2c pthread_include_pthread_local_storage_impl + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x0 + *fill* 0x0000000042014a31 0x3 + .text.panic_get_address + 0x0000000042014a34 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042014a34 panic_get_address + *fill* 0x0000000042014a3b 0x1 + .text.panic_get_cause + 0x0000000042014a3c 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042014a3c panic_get_cause + .text.panic_set_address + 0x0000000042014a44 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x0000000042014a44 panic_set_address + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x0 + *fill* 0x0000000042014a4b 0x1 + .text.uart_hal_write_txfifo + 0x0000000042014a4c 0x3a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x0000000042014a4c uart_hal_write_txfifo + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x0 + *fill* 0x0000000042014a86 0x2 + .text.vfs_include_syscalls_impl + 0x0000000042014a88 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x0000000042014a88 vfs_include_syscalls_impl + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x0 + *fill* 0x0000000042014a8d 0x3 + .text.heap_caps_match + 0x0000000042014a90 0x32 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x0000000042014a90 heap_caps_match + *fill* 0x0000000042014ac2 0x0 + *fill* 0x0000000042014ac2 0x0 + *fill* 0x0000000042014ac2 0x0 + *fill* 0x0000000042014ac2 0x0 + *fill* 0x0000000042014ac2 0x0 + *fill* 0x0000000042014ac2 0x0 + *fill* 0x0000000042014ac2 0x2 + .text.s_compare_reserved_regions + 0x0000000042014ac4 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + *fill* 0x0000000042014ad0 0x0 + .text.esp_chip_info + 0x0000000042014ad0 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x0000000042014ad0 esp_chip_info + *fill* 0x0000000042014aed 0x0 + *fill* 0x0000000042014aed 0x0 + *fill* 0x0000000042014aed 0x0 + *fill* 0x0000000042014aed 0x0 + *fill* 0x0000000042014aed 0x0 + *fill* 0x0000000042014aed 0x0 + *fill* 0x0000000042014aed 0x3 + .text.pthread_setcancelstate + 0x0000000042014af0 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000042014af0 pthread_setcancelstate + *fill* 0x0000000042014af7 0x1 + .text.newlib_include_pthread_impl + 0x0000000042014af8 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000042014af8 newlib_include_pthread_impl + *fill* 0x0000000042014afd 0x0 + *fill* 0x0000000042014afd 0x0 + *fill* 0x0000000042014afd 0x0 + *fill* 0x0000000042014afd 0x0 + *fill* 0x0000000042014afd 0x3 + .text.newlib_include_syscalls_impl + 0x0000000042014b00 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000042014b00 newlib_include_syscalls_impl + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x0 + *fill* 0x0000000042014b05 0x3 + .text.__cxa_guard_dummy + 0x0000000042014b08 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x0000000042014b08 __cxa_guard_dummy + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x0 + *fill* 0x0000000042014b0d 0x3 + .text.esp_pm_impl_waiti + 0x0000000042014b10 0x8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + 0x0000000042014b10 esp_pm_impl_waiti + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + *fill* 0x0000000042014b18 0x0 + .text.esp_flash_chip_driver_initialized + 0x0000000042014b18 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000042014b18 esp_flash_chip_driver_initialized + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + *fill* 0x0000000042014b28 0x0 + .text.esp_task_wdt_isr_user_handler + 0x0000000042014b28 0x5 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x0000000042014b28 esp_task_wdt_isr_user_handler + *fill* 0x0000000042014b2d 0x0 + *fill* 0x0000000042014b2d 0x0 + *fill* 0x0000000042014b2d 0x0 + *fill* 0x0000000042014b2d 0x0 + *fill* 0x0000000042014b2d 0x0 + *fill* 0x0000000042014b2d 0x3 + .text.mpu_hal_set_region_access + 0x0000000042014b30 0x48 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x0000000042014b30 mpu_hal_set_region_access + *fill* 0x0000000042014b78 0x0 + *fill* 0x0000000042014b78 0x0 + .text.uart_hal_set_stop_bits + 0x0000000042014b78 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042014b78 uart_hal_set_stop_bits + .text.uart_hal_get_stop_bits + 0x0000000042014b98 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042014b98 uart_hal_get_stop_bits + *fill* 0x0000000042014ba9 0x3 + .text.uart_hal_set_data_bit_num + 0x0000000042014bac 0x1f esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042014bac uart_hal_set_data_bit_num + *fill* 0x0000000042014bcb 0x1 + .text.uart_hal_get_data_bit_num + 0x0000000042014bcc 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042014bcc uart_hal_get_data_bit_num + *fill* 0x0000000042014bdd 0x3 + .text.uart_hal_set_parity + 0x0000000042014be0 0x36 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042014be0 uart_hal_set_parity + *fill* 0x0000000042014c16 0x2 + .text.uart_hal_get_parity + 0x0000000042014c18 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x0000000042014c18 uart_hal_get_parity + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x0 + *fill* 0x0000000042014c3e 0x2 + .text 0x0000000042014c40 0x77 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + 0x0000000042014c40 _fwalk + 0x0000000042014c78 _fwalk_reent + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *fill* 0x0000000042014cb7 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *(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 .literal.esp_event_send_to_default_loop .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 .text.esp_event_send_to_default_loop) + *libesp_event.a:esp_event.*(.literal.base_node_add_handler .literal.base_node_remove_all_handler .literal.base_node_remove_handler .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_handler_register_with .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_loop_create .literal.esp_event_loop_delete .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_post_to .literal.handler_instances_add .literal.handler_instances_remove .literal.handler_instances_remove_all .literal.loop_node_add_handler .literal.loop_node_remove_all_handler .literal.loop_node_remove_handler .text .text.base_node_add_handler .text.base_node_remove_all_handler .text.base_node_remove_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_execute .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_node_remove_all_handler .text.loop_node_remove_handler) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .literal.rtc_vddsdio_get_config .text .text.rtc_init .text.rtc_vddsdio_get_config) + *fill* 0x0000000042014cb7 0x1 + .text.rtc_init + 0x0000000042014cb8 0x5eb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x0000000042014cb8 rtc_init + *fill* 0x00000000420152a3 0x0 + *libesp_system.a:esp_system.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .literal.esp_register_shutdown_handler .literal.esp_unregister_shutdown_handler .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size .text.esp_register_shutdown_handler .text.esp_unregister_shutdown_handler) + *fill* 0x00000000420152a3 0x1 + .text.esp_register_shutdown_handler + 0x00000000420152a4 0x35 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x00000000420152a4 esp_register_shutdown_handler + *fill* 0x00000000420152d9 0x3 + .text.esp_get_minimum_free_heap_size + 0x00000000420152dc 0xd esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x10 (size before relaxing) + 0x00000000420152dc esp_get_minimum_free_heap_size + *fill* 0x00000000420152e9 0x0 + *fill* 0x00000000420152e9 0x0 + *libfreertos.a:port.*(.literal.esp_startup_start_app .text.esp_startup_start_app) + *fill* 0x00000000420152e9 0x3 + .text.esp_startup_start_app + 0x00000000420152ec 0x29 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000420152ec esp_startup_start_app + *libfreertos.a:port.*(.literal.esp_startup_start_app_other_cores .text.esp_startup_start_app_other_cores) + *fill* 0x0000000042015315 0x3 + .text.esp_startup_start_app_other_cores + 0x0000000042015318 0x4e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x52 (size before relaxing) + 0x0000000042015318 esp_startup_start_app_other_cores + *fill* 0x0000000042015366 0x0 + *libfreertos.a:port_common.*(.literal.main_task .text.main_task) + *fill* 0x0000000042015366 0x2 + .text.main_task + 0x0000000042015368 0x7e esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x8a (size before relaxing) + *fill* 0x00000000420153e6 0x0 + *liblog.a:log.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.heap_bubble_down .literal.s_log_level_get_and_unlock .text .text.esp_log_level_get .text.esp_log_level_set .text.esp_log_set_vprintf .text.esp_log_writev .text.heap_bubble_down .text.s_log_level_get_and_unlock) + *fill* 0x00000000420153e6 0x2 + .text.heap_bubble_down + 0x00000000420153e8 0x5a esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000042015442 0x2 + .text.s_log_level_get_and_unlock + 0x0000000042015444 0x13f esp-idf/log/liblog.a(log.c.obj) + *fill* 0x0000000042015583 0x1 + .text.esp_log_writev + 0x0000000042015584 0x2e esp-idf/log/liblog.a(log.c.obj) + 0x32 (size before relaxing) + 0x0000000042015584 esp_log_writev + *fill* 0x00000000420155b2 0x0 + *fill* 0x00000000420155b2 0x0 + *fill* 0x00000000420155b2 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *fill* 0x00000000420155b2 0x2 + .fini 0x00000000420155b4 0x3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + 0x00000000420155b4 _fini + *(.gnu.version) + 0x00000000420155c7 . = (. + 0x10) + *fill* 0x00000000420155b7 0x10 + 0x00000000420155c7 _text_end = ABSOLUTE (.) + 0x00000000420155c7 _instruction_reserved_end = ABSOLUTE (.) + 0x00000000420155c7 _etext = . + 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) + +.flash_rodata_dummy + 0x000000003c000020 0x20000 + 0x000000003c000020 _flash_rodata_dummy_start = . + 0x000000003c000020 . = ALIGN (ALIGNOF (.flash.text)) + 0x000000003c0155c7 . = (. + SIZEOF (.flash.text)) + *fill* 0x000000003c000020 0x155a7 + 0x000000003c020020 . = (ALIGN (0x10000) + 0x20) + *fill* 0x000000003c0155c7 0xaa59 + 0x000000003c020020 _rodata_reserved_start = . + +.flash.appdesc 0x000000003c020020 0x100 + 0x000000003c020020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x000000003c020020 0x100 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000003c020020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x000000003c020120 . = ALIGN (ALIGNOF (.flash.rodata)) + +.flash.rodata 0x000000003c020120 0x69fc + 0x000000003c020120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_clk.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_timing_tuning.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_winbond.* *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.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:abort.* *libheap.a:multi_heap.* *libheap.a:heap_tlsf.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:soc_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cpu_hal.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_hw_support.a:rtc_clk.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata.*) + .rodata.str1.4 + 0x000000003c020120 0x53 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003c020173 0x1 + .rodata.start_other_core.str1.4 + 0x000000003c020174 0xfb esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x000000003c02026f 0x1 + .rodata.select_rtc_slow_clk.str1.4 + 0x000000003c020270 0x5b esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x000000003c0202cb 0x1 + .rodata.esp_clk_init.str1.4 + 0x000000003c0202cc 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata 0x000000003c020334 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.__func__$7179 + 0x000000003c020338 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x000000003c020345 0x3 + .rodata.do_core_init.str1.4 + 0x000000003c020348 0x7c esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x80 (size before relaxing) + .rodata.start_cpu0_default.str1.4 + 0x000000003c0203c4 0x168 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x174 (size before relaxing) + .rodata.__func__$13485 + 0x000000003c02052c 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x000000003c020539 0x3 + .rodata.g_startup_fn + 0x000000003c02053c 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x000000003c02053c g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x000000003c020544 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.4 + 0x000000003c02054c 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3 (size before relaxing) + .rodata 0x000000003c02054c 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x000000003c020551 0x3 + .rodata 0x000000003c020554 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata.print_debug_exception_details.str1.4 + 0x000000003c020564 0x93 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c0205f7 0x1 + .rodata.print_illegal_instruction_details.str1.4 + 0x000000003c0205f8 0x17 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000003c02060f 0x1 + .rodata.panic_print_registers.str1.4 + 0x000000003c020610 0x199 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a5 (size before relaxing) + *fill* 0x000000003c0207a9 0x3 + .rodata 0x000000003c0207ac 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x000000003c02080c 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000003c020825 0x3 + .rodata.panic_soc_fill_info.str1.4 + 0x000000003c020828 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x000000003c020837 0x1 + .rodata.str1.4 + 0x000000003c020838 0x27b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x27f (size before relaxing) + *fill* 0x000000003c020ab3 0x1 + .rodata.pseudo_reason$5152 + 0x000000003c020ab4 0x1c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$5146 + 0x000000003c020ad0 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x000000003c020b70 0x49 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x51 (size before relaxing) + *fill* 0x000000003c020bb9 0x3 + .rodata 0x000000003c020bbc 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler.str1.4 + 0x000000003c020bcc 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000003c020c4f 0x1 + .rodata.translate_path.str1.4 + 0x000000003c020c50 0x5d esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003c020cad 0x3 + .rodata 0x000000003c020cb0 0x3 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003c020cb3 0x1 + .rodata.__func__$6920 + 0x000000003c020cb4 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003c020cc3 0x1 + .rodata.uart_access.str1.4 + 0x000000003c020cc4 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020ccf 0x1 + .rodata.uart_fcntl.str1.4 + 0x000000003c020cd0 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d02 0x2 + .rodata.uart_return_char.str1.4 + 0x000000003c020d04 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d21 0x3 + .rodata.uart_fsync.str1.4 + 0x000000003c020d24 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d36 0x2 + .rodata.esp_vfs_dev_uart_register.str1.4 + 0x000000003c020d38 0x36 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d6e 0x2 + .rodata.__func__$8135 + 0x000000003c020d70 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d7b 0x1 + .rodata.__func__$8151 + 0x000000003c020d7c 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d8d 0x3 + .rodata.__func__$8157 + 0x000000003c020d90 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020d9a 0x2 + .rodata.__func__$8173 + 0x000000003c020d9c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020da7 0x1 + .rodata.__func__$8169 + 0x000000003c020da8 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020db3 0x1 + .rodata.__func__$8179 + 0x000000003c020db4 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020dbf 0x1 + .rodata.__func__$8189 + 0x000000003c020dc0 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020dcb 0x1 + .rodata.__func__$8388 + 0x000000003c020dcc 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003c020de6 0x2 + .rodata.s_ctx 0x000000003c020de8 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.s_log_level_get_and_unlock.str1.4 + 0x000000003c020df4 0x65 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c020e59 0x3 + .rodata.__func__$3607 + 0x000000003c020e5c 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003c020e71 0x3 + .rodata.str1.4 + 0x000000003c020e74 0x119 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020f8d 0x3 + .rodata.__func__$5120 + 0x000000003c020f90 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020fa2 0x2 + .rodata.__func__$5111 + 0x000000003c020fa4 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020fb3 0x1 + .rodata.__func__$5024 + 0x000000003c020fb4 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5043 + 0x000000003c020fcc 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003c020fdd 0x3 + .rodata.register_heap.str1.4 + 0x000000003c020fe0 0x41 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c021021 0x3 + .rodata.heap_caps_init.str1.4 + 0x000000003c021024 0x13c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$4322 + 0x000000003c021160 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$5065 + 0x000000003c021174 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c021183 0x1 + .rodata.__func__$5034 + 0x000000003c021184 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003c021192 0x2 + .rodata.s_prepare_reserved_regions.str1.4 + 0x000000003c021194 0x100 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .rodata.__func__$2793 + 0x000000003c021294 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x000000003c0212af 0x1 + .rodata.soc_memory_region_count + 0x000000003c0212b0 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c0212b0 soc_memory_region_count + .rodata.soc_memory_regions + 0x000000003c0212b4 0x90 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c0212b4 soc_memory_regions + .rodata.str1.4 + 0x000000003c021344 0x2b esp-idf/heap/libheap.a(memory_layout.c.obj) + *fill* 0x000000003c02136f 0x1 + .rodata.soc_memory_types + 0x000000003c021370 0x64 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c021370 soc_memory_types + .rodata 0x000000003c0213d4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x000000003c0213e8 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c02141f 0x1 + .rodata.is_vect_desc_usable.str1.4 + 0x000000003c021420 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c021463 0x1 + .rodata.esp_intr_free.str1.4 + 0x000000003c021464 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$5612 + 0x000000003c021468 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c021479 0x3 + .rodata.__func__$5592 + 0x000000003c02147c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c02148a 0x2 + .rodata.__func__$5522 + 0x000000003c02148c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$5498 + 0x000000003c0214a0 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x000000003c0214b5 0x3 + .rodata.rtc_init.str1.4 + 0x000000003c0214b8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .rodata 0x000000003c0214f0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + *fill* 0x000000003c0214fe 0x2 + .rodata.str1.4 + 0x000000003c021500 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + *fill* 0x000000003c021523 0x1 + .rodata.str1.4 + 0x000000003c021524 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c021555 0x3 + .rodata.esp_timer_init.str1.4 + 0x000000003c021558 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c021562 0x2 + .rodata.__func__$5596 + 0x000000003c021564 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003c021571 0x3 + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x000000003c021574 0x50 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x000000003c0215c4 0x7d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + *fill* 0x000000003c021641 0x3 + .rodata.vPortTaskWrapper.str1.4 + 0x000000003c021644 0x57 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c02169b 0x1 + .rodata.pxPortInitialiseStack.str1.4 + 0x000000003c02169c 0x47 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c0216e3 0x1 + .rodata.vPortEnterCritical.str1.4 + 0x000000003c0216e4 0x73 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xbb (size before relaxing) + *fill* 0x000000003c021757 0x1 + .rodata.vPortExitCritical.str1.4 + 0x000000003c021758 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000003c021784 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.esp_startup_start_app_other_cores.str1.4 + 0x000000003c0217c0 0x36 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000003c0217f6 0x2 + .rodata.esp_startup_start_app.str1.4 + 0x000000003c0217f8 0x36 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c02182e 0x2 + .rodata.__func__$4504 + 0x000000003c021830 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c021841 0x3 + .rodata.__func__$4491 + 0x000000003c021844 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c021855 0x3 + .rodata.__func__$5612 + 0x000000003c021858 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003c02186e 0x2 + .rodata 0x000000003c021870 0x30 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003c021870 _xt_coproc_sa_offset + .rodata.main_task.str1.4 + 0x000000003c0218a0 0x99 esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c021939 0x3 + .rodata.esp_startup_start_app_common.str1.4 + 0x000000003c02193c 0x16 esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c021952 0x2 + .rodata.__func__$5370 + 0x000000003c021954 0xa esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c02195e 0x2 + .rodata.__func__$5362 + 0x000000003c021960 0x1d esp-idf/freertos/libfreertos.a(port_common.c.obj) + *fill* 0x000000003c02197d 0x3 + .rodata.vPortSetupTimer.str1.4 + 0x000000003c021980 0xb0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.__func__$5862 + 0x000000003c021a30 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x000000003c021a40 0x7b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021abb 0x1 + .rodata.xQueueGenericReset.str1.4 + 0x000000003c021abc 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4d (size before relaxing) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x000000003c021ac4 0xdf esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021ba3 0x1 + .rodata.xQueueGenericCreate.str1.4 + 0x000000003c021ba4 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021c32 0x2 + .rodata.xQueueGenericSend.str1.4 + 0x000000003c021c34 0x195 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021dc9 0x3 + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x000000003c021dcc 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.4 + 0x000000003c021dd4 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021e51 0x3 + .rodata.xQueueReceive.str1.4 + 0x000000003c021e54 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021eba 0x2 + .rodata.xQueueSemaphoreTake.str1.4 + 0x000000003c021ebc 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021ee9 0x3 + .rodata.xQueueReceiveFromISR.str1.4 + 0x000000003c021eec 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021f3e 0x2 + .rodata.__func__$5610 + 0x000000003c021f40 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021f4d 0x3 + .rodata.__func__$5576 + 0x000000003c021f50 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021f65 0x3 + .rodata.__func__$5552 + 0x000000003c021f68 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5530 + 0x000000003c021f7c 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021f8e 0x2 + .rodata.__func__$5694 + 0x000000003c021f90 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021fab 0x1 + .rodata.__func__$5509 + 0x000000003c021fac 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021fbe 0x2 + .rodata.__func__$5485 + 0x000000003c021fc0 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021fd9 0x3 + .rodata.__func__$5478 + 0x000000003c021fdc 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c021ff5 0x3 + .rodata.__func__$5439 + 0x000000003c021ff8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5429 + 0x000000003c02200c 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c022026 0x2 + .rodata.__func__$4478 + 0x000000003c022028 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5420 + 0x000000003c02203c 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003c02204f 0x1 + .rodata.prvDeleteTLS.str1.4 + 0x000000003c022050 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvDeleteTCB.str1.4 + 0x000000003c022078 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0220aa 0x2 + .rodata.vTaskDelayUntil.str1.4 + 0x000000003c0220ac 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandleForCPU.str1.4 + 0x000000003c022104 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02213a 0x2 + .rodata.xTaskIncrementTick.str1.4 + 0x000000003c02213c 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0221b2 0x2 + .rodata.xTaskResumeAll.str1.4 + 0x000000003c0221b4 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSwitchContext.str1.4 + 0x000000003c0221ff 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0221ff 0x1 + .rodata.vTaskPlaceOnEventList.str1.4 + 0x000000003c022200 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x000000003c02220c 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02221b 0x1 + .rodata.vTaskSetTimeOutState.str1.4 + 0x000000003c02221c 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022226 0x2 + .rodata.xTaskCheckForTimeOut.str1.4 + 0x000000003c022228 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022236 0x2 + .rodata.vTaskPrioritySet.str1.4 + 0x000000003c022238 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022253 0x1 + .rodata.vTaskDelete.str1.4 + 0x000000003c022254 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022285 0x3 + .rodata.xTaskPriorityDisinherit.str1.4 + 0x000000003c022288 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0222c5 0x3 + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x000000003c0222c8 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotify.str1.4 + 0x000000003c0222f0 0x6f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02235f 0x1 + .rodata.vTaskStartScheduler.str1.4 + 0x000000003c022360 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02237a 0x2 + .rodata.__func__$5880 + 0x000000003c02237c 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022393 0x1 + .rodata.__func__$5818 + 0x000000003c022394 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5809 + 0x000000003c0223b8 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5685 + 0x000000003c0223d0 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0223e5 0x3 + .rodata.__func__$5662 + 0x000000003c0223e8 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022401 0x3 + .rodata.__func__$5641 + 0x000000003c022404 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02241a 0x2 + .rodata.__func__$4501 + 0x000000003c02241c 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02242d 0x3 + .rodata.__func__$4488 + 0x000000003c022430 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022441 0x3 + .rodata.ucExpectedStackBytes$5613 + 0x000000003c022444 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5606 + 0x000000003c022458 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02246b 0x1 + .rodata.__func__$5592 + 0x000000003c02246c 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c022489 0x3 + .rodata.__func__$5584 + 0x000000003c02248c 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c02249a 0x2 + .rodata.__func__$5561 + 0x000000003c02249c 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0224ab 0x1 + .rodata.__func__$5541 + 0x000000003c0224ac 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5506 + 0x000000003c0224c0 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0224d1 0x3 + .rodata.__func__$5478 + 0x000000003c0224d4 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0224df 0x1 + .rodata.__func__$5773 + 0x000000003c0224e0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0224ed 0x3 + .rodata.__func__$5777 + 0x000000003c0224f0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003c0224fd 0x3 + .rodata.__func__$5466 + 0x000000003c022500 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.str1.4 + 0x000000003c02250c 0x91 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c02259d 0x3 + .rodata.esp_newlib_locks_init.str1.4 + 0x000000003c0225a0 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$5237 + 0x000000003c022608 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c02261e 0x2 + .rodata.__func__$5205 + 0x000000003c022620 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c022633 0x1 + .rodata.__func__$5180 + 0x000000003c022634 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c022649 0x3 + .rodata.__func__$5160 + 0x000000003c02264c 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003c022661 0x3 + .rodata.__func__$5151 + 0x000000003c022664 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.app_main.str1.4 + 0x000000003c022670 0xe8 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0xec (size before relaxing) + .rodata.str1.4 + 0x000000003c022758 0x41 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + *fill* 0x000000003c022799 0x3 + .rodata.esp_ipc_init.str1.4 + 0x000000003c02279c 0x6 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003c0227a2 0x2 + .rodata.__func__$5409 + 0x000000003c0227a4 0x9 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + *fill* 0x000000003c0227ad 0x3 + .rodata.__func__$5421 + 0x000000003c0227b0 0xd esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + *fill* 0x000000003c0227bd 0x3 + .rodata.esp_ipc_isr_init_cpu.str1.4 + 0x000000003c0227c0 0x5d esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + *fill* 0x000000003c02281d 0x3 + .rodata.esp_ipc_isr_init.str1.4 + 0x000000003c022820 0xd esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x1e (size before relaxing) + *fill* 0x000000003c02282d 0x3 + .rodata.__func__$5512 + 0x000000003c022830 0x15 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + *fill* 0x000000003c022845 0x3 + .rodata.__func__$5518 + 0x000000003c022848 0x11 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + *fill* 0x000000003c022859 0x3 + .rodata.periph_module_enable.str1.4 + 0x000000003c02285c 0x40 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.__func__$4997 + 0x000000003c02289c 0x15 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x000000003c0228b1 0x3 + .rodata.uart_disable_intr_mask_and_return_prev.str1.4 + 0x000000003c0228b4 0x36 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c0228ea 0x2 + .rodata.uart_set_word_length.str1.4 + 0x000000003c0228ec 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c02291a 0x2 + .rodata.uart_set_stop_bits.str1.4 + 0x000000003c02291c 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c02294a 0x2 + .rodata.uart_pattern_pop_pos.str1.4 + 0x000000003c02294c 0x31 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c02297d 0x3 + .rodata.uart_flush_input.str1.4 + 0x000000003c022980 0x2d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c0229ad 0x3 + .rodata.__FUNCTION__$8051 + 0x000000003c0229b0 0x27 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c0229d7 0x1 + .rodata.__FUNCTION__$8055 + 0x000000003c0229d8 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c0229e9 0x3 + .rodata.__FUNCTION__$8043 + 0x000000003c0229ec 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022a07 0x1 + .rodata.__FUNCTION__$7978 + 0x000000003c022a08 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022a1a 0x2 + .rodata.__FUNCTION__$7806 + 0x000000003c022a1c 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022a32 0x2 + .rodata.__FUNCTION__$7772 + 0x000000003c022a34 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022a46 0x2 + .rodata.__FUNCTION__$7767 + 0x000000003c022a48 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022a5a 0x2 + .rodata.__FUNCTION__$7762 + 0x000000003c022a5c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7757 + 0x000000003c022a6c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7752 + 0x000000003c022a7c 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022a8f 0x1 + .rodata.__FUNCTION__$7747 + 0x000000003c022a90 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022aa3 0x1 + .rodata.__FUNCTION__$7742 + 0x000000003c022aa4 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022ab9 0x3 + .rodata.__FUNCTION__$7737 + 0x000000003c022abc 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003c022ad1 0x3 + .rodata.spi_flash_init_lock.str1.4 + 0x000000003c022ad4 0x43 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c022b17 0x1 + .rodata.str1.4 + 0x000000003c022b18 0x180 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$6083 + 0x000000003c022c98 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c022cc9 0x3 + .rodata.__func__$6070 + 0x000000003c022ccc 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003c022cfe 0x2 + .rodata.__func__$6053 + 0x000000003c022d00 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x000000003c022d14 0xca esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c022dde 0x2 + .rodata.__func__$6138 + 0x000000003c022de0 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c022df1 0x3 + .rodata.__func__$6129 + 0x000000003c022df4 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003c022e09 0x3 + .rodata.str1.4 + 0x000000003c022e0c 0x235 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c023041 0x3 + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x000000003c023044 0x91 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c0230d5 0x3 + .rodata.io_mode_str + 0x000000003c0230d8 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c023102 0x2 + .rodata.TAG 0x000000003c023104 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003c02310e 0x2 + .rodata.esp_flash_init_default_chip.str1.4 + 0x000000003c023110 0xfb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003c02320b 0x1 + .rodata.TAG 0x000000003c02320c 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003c023216 0x2 + .rodata.str1.4 + 0x000000003c023218 0x45 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003c02325d 0x3 + .rodata.__func__$7435 + 0x000000003c023260 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x000000003c02327a 0x2 + .rodata.load_partitions.str1.4 + 0x000000003c02327c 0x78 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003c0232f4 0x35 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c023329 0x3 + .rodata.esp_partition_next.str1.4 + 0x000000003c02332c 0x29 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c023355 0x3 + .rodata.esp_partition_get.str1.4 + 0x000000003c023358 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c023369 0x3 + .rodata.__func__$4501 + 0x000000003c02336c 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c02337e 0x2 + .rodata.__func__$4452 + 0x000000003c023380 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003c023393 0x1 + .rodata.str1.4 + 0x000000003c023394 0x46 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c0233da 0x2 + .rodata.esp_crosscore_int_init.str1.4 + 0x000000003c0233dc 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.__func__$4940 + 0x000000003c0233e0 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c0233f7 0x1 + .rodata.__func__$4935 + 0x000000003c0233f8 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x000000003c02340f 0x1 + .rodata.task_wdt_isr.str1.4 + 0x000000003c023410 0x16e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c02357e 0x2 + .rodata.esp_task_wdt_init.str1.4 + 0x000000003c023580 0x85 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c023605 0x3 + .rodata.esp_task_wdt_add.str1.4 + 0x000000003c023608 0x39 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c023641 0x3 + .rodata.__func__$7527 + 0x000000003c023644 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c023655 0x3 + .rodata.__func__$7510 + 0x000000003c023658 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x000000003c02366a 0x2 + .rodata.spi_flash_gpspi_clk_cfg_reg + 0x000000003c02366c 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.spi_flash_clk_cfg_reg + 0x000000003c02369c 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.interrupt_descriptor_table + 0x000000003c0236cc 0x200 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .rodata.esp_unknown_msg + 0x000000003c0238cc 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003c0238d2 0x2 + .rodata.str1.4 + 0x000000003c0238d4 0x1619 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003c024eed 0x3 + .rodata.esp_err_msg_table + 0x000000003c024ef0 0x658 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.prvReturnItemByteBuf.str1.4 + 0x000000003c025548 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0255c7 0x1 + .rodata.prvGetFreeSize.str1.4 + 0x000000003c0255c8 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0255e7 0x1 + .rodata.prvReceiveGeneric.str1.4 + 0x000000003c0255e8 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c02561d 0x3 + .rodata.xRingbufferSendAcquire.str1.4 + 0x000000003c025620 0x95 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0256b5 0x3 + .rodata.xRingbufferSendComplete.str1.4 + 0x000000003c0256b8 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c0256ce 0x2 + .rodata.xRingbufferSend.str1.4 + 0x000000003c0256d0 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5855 + 0x000000003c0256f8 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c02570e 0x2 + .rodata.__func__$5706 + 0x000000003c025710 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c025722 0x2 + .rodata.__func__$5793 + 0x000000003c025724 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c025737 0x1 + .rodata.__func__$5769 + 0x000000003c025738 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5587 + 0x000000003c025748 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003c025757 0x1 + .rodata.g_spi_lock_main_flash_dev + 0x000000003c025758 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x000000003c025758 g_spi_lock_main_flash_dev + .rodata.esp_ota_get_running_partition.str1.4 + 0x000000003c02575c 0x5b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003c0257b7 0x1 + .rodata.__func__$5016 + 0x000000003c0257b8 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003c0257d6 0x2 + .rodata 0x000000003c0257d8 0x20 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + 0x000000003c0257d8 Xthal_intlevel + .rodata.str1.1 + 0x000000003c0257f8 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + 0x3d (size before relaxing) + .rodata 0x000000003c025834 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x000000003c025834 __sf_fake_stderr + 0x000000003c025854 __sf_fake_stdout + 0x000000003c025874 __sf_fake_stdin + .rodata.str1.1 + 0x000000003c025894 0x3c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x2 (size before relaxing) + .rodata 0x000000003c025894 0x2bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x000000003c025b50 0x34 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .rodata 0x000000003c025b84 0x2bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .rodata.str1.1 + 0x000000003c025e40 0x22 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .rodata 0x000000003c025e40 0x2bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003c0260fc 0x34 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003c0260fc 0xa5 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0xa7 (size before relaxing) + .rodata.str1.1 + 0x000000003c0261a1 0x71 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x99 (size before relaxing) + *fill* 0x000000003c026212 0x6 + .rodata 0x000000003c026218 0x128 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0x000000003c026228 __mprec_tinytens + 0x000000003c026250 __mprec_bigtens + 0x000000003c026278 __mprec_tens + .rodata 0x000000003c026340 0x494 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0x000000003c0265fc __action_table + 0x000000003c026668 __state_table + 0x000000003c0266d4 __chclass + .rodata.str1.1 + 0x000000003c0267d4 0x22 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .rodata 0x000000003c0267d4 0x101 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + 0x000000003c0267d4 _ctype_ + .rodata.str1.1 + 0x000000003c0268d5 0xa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0xb (size before relaxing) + *fill* 0x000000003c0268df 0x1 + .rodata 0x000000003c0268e0 0x16c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x000000003c0268e0 __default_global_locale + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003c026a4c __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x000000003c026a4c . = ((. + 0x3) & 0xfffffffffffffffc) + 0x000000003c026a4c __eh_frame = ABSOLUTE (.) + *(.eh_frame) + .eh_frame 0x000000003c026a4c 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .eh_frame 0x000000003c026a4c 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x000000003c026a74 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .eh_frame 0x000000003c026a9c 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x000000003c026ac4 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x000000003c026aec 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + 0x000000003c026af4 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003c026af0 0x4 + 0x000000003c026af4 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors SORT_BY_NAME(.ctors.*)) + .ctors 0x000000003c026af4 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .ctors 0x000000003c026af8 0x4 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x000000003c026afc __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003c026afc 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003c026b00 0x4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + 0x000000003c026b00 __DTOR_END__ + 0x000000003c026b04 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003c026b04 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003c026b04 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x000000003c026b04 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x000000003c026b1c soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003c026b1c _rodata_end = ABSOLUTE (.) + 0x000000003c026b1c _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003c026b1c _lit4_end = ABSOLUTE (.) + 0x000000003c026b1c . = ALIGN (0x4) + 0x000000003c026b1c _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x000000003c026b1c _thread_local_end = ABSOLUTE (.) + 0x000000003c026b1c _rodata_reserved_end = ABSOLUTE (.) + 0x000000003c026b1c . = ALIGN (0x4) + 0x0000000000000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x000000003c026b1c 0x0 + 0x000000003c026b1c . = ALIGN (0x4) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + +.iram0.text_end + 0x000000004037f6c3 0x1 + 0x000000004037f6c4 . = ALIGN (0x4) + *fill* 0x000000004037f6c3 0x1 + 0x000000004037f6c4 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x000000004037f6c4 0x0 + 0x000000004037f6c4 . = ALIGN (0x4) + 0x000000004037f6c4 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x000000004037f6c4 _coredump_iram_start = ABSOLUTE (.) + *(.iram.data.coredump .iram.data.coredump.*) + 0x000000004037f6c4 _coredump_iram_end = ABSOLUTE (.) + 0x000000004037f6c4 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x000000004037f6c4 0x0 + 0x000000004037f6c4 . = ALIGN (0x4) + 0x000000004037f6c4 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x000000004037f6c4 _iram_bss_end = ABSOLUTE (.) + 0x000000004037f6c4 . = ALIGN (0x4) + 0x000000004037f6c4 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x000000003fc924d0 0x0 + 0x000000003fc924d0 . = ALIGN (0x8) + 0x000000003fc924d0 _heap_start = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x0000000000000001 ASSERT (((_heap_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x000000004000057c rtc_get_reset_reason = 0x4000057c + 0x0000000040000588 analog_super_wdt_reset_happened = 0x40000588 + 0x0000000040000594 jtag_cpu_reset_happened = 0x40000594 + 0x00000000400005a0 rtc_get_wakeup_cause = 0x400005a0 + 0x00000000400005ac rtc_select_apb_bridge = 0x400005ac + 0x00000000400005b8 rtc_unhold_all_pads = 0x400005b8 + 0x00000000400005c4 ets_is_print_boot = 0x400005c4 + 0x00000000400005d0 ets_printf = 0x400005d0 + 0x00000000400005dc ets_install_putc1 = 0x400005dc + 0x00000000400005e8 ets_install_uart_printf = 0x400005e8 + 0x00000000400005f4 ets_install_putc2 = 0x400005f4 + 0x0000000040000600 PROVIDE (ets_delay_us = 0x40000600) + 0x000000004000060c ets_get_stack_info = 0x4000060c + 0x0000000040000618 ets_install_lock = 0x40000618 + 0x0000000040000624 ets_backup_dma_copy = 0x40000624 + 0x0000000040000630 ets_apb_backup_init_lock_func = 0x40000630 + 0x000000004000063c UartRxString = 0x4000063c + 0x0000000040000648 uart_tx_one_char = 0x40000648 + 0x0000000040000654 uart_tx_one_char2 = 0x40000654 + 0x0000000040000660 uart_rx_one_char = 0x40000660 + 0x000000004000066c uart_rx_one_char_block = 0x4000066c + 0x0000000040000678 uart_rx_readbuff = 0x40000678 + 0x0000000040000684 uartAttach = 0x40000684 + 0x0000000040000690 uart_tx_flush = 0x40000690 + 0x000000004000069c uart_tx_wait_idle = 0x4000069c + 0x00000000400006a8 uart_div_modify = 0x400006a8 + 0x00000000400006b4 ets_write_char_uart = 0x400006b4 + 0x00000000400006c0 uart_tx_switch = 0x400006c0 + 0x00000000400006cc multofup = 0x400006cc + 0x00000000400006d8 software_reset = 0x400006d8 + 0x00000000400006e4 software_reset_cpu = 0x400006e4 + 0x00000000400006f0 assist_debug_clock_enable = 0x400006f0 + 0x00000000400006fc assist_debug_record_enable = 0x400006fc + 0x0000000040000708 clear_super_wdt_reset_flag = 0x40000708 + 0x0000000040000714 disable_default_watchdog = 0x40000714 + 0x0000000040000720 ets_set_appcpu_boot_addr = 0x40000720 + 0x000000004000072c esp_rom_set_rtc_wake_addr = 0x4000072c + 0x0000000040000738 esp_rom_get_rtc_wake_addr = 0x40000738 + 0x0000000040000744 send_packet = 0x40000744 + 0x0000000040000750 recv_packet = 0x40000750 + 0x000000004000075c GetUartDevice = 0x4000075c + 0x0000000040000768 UartDwnLdProc = 0x40000768 + 0x0000000040000774 Uart_Init = 0x40000774 + 0x0000000040000780 ets_set_user_start = 0x40000780 + 0x000000003ff1fffc ets_rom_layout_p = 0x3ff1fffc + 0x000000003fcefffc ets_ops_table_ptr = 0x3fcefffc + 0x000000004000078c mz_adler32 = 0x4000078c + 0x0000000040000798 mz_crc32 = 0x40000798 + 0x00000000400007a4 mz_free = 0x400007a4 + 0x00000000400007b0 tdefl_compress = 0x400007b0 + 0x00000000400007bc tdefl_compress_buffer = 0x400007bc + 0x00000000400007c8 tdefl_compress_mem_to_heap = 0x400007c8 + 0x00000000400007d4 tdefl_compress_mem_to_mem = 0x400007d4 + 0x00000000400007e0 tdefl_compress_mem_to_output = 0x400007e0 + 0x00000000400007ec tdefl_get_adler32 = 0x400007ec + 0x00000000400007f8 tdefl_get_prev_return_status = 0x400007f8 + 0x0000000040000804 tdefl_init = 0x40000804 + 0x0000000040000810 tdefl_write_image_to_png_file_in_memory = 0x40000810 + 0x000000004000081c tdefl_write_image_to_png_file_in_memory_ex = 0x4000081c + 0x0000000040000828 tinfl_decompress = 0x40000828 + 0x0000000040000834 tinfl_decompress_mem_to_callback = 0x40000834 + 0x0000000040000840 tinfl_decompress_mem_to_heap = 0x40000840 + 0x000000004000084c tinfl_decompress_mem_to_mem = 0x4000084c + 0x0000000040000858 jd_prepare = 0x40000858 + 0x0000000040000864 jd_decomp = 0x40000864 + 0x000000003fcefff8 dsps_fft2r_w_table_fc32_1024 = 0x3fcefff8 + [!provide] PROVIDE (opi_flash_set_lock_func = 0x40000870) + [!provide] PROVIDE (esp_rom_spi_cmd_config = 0x4000087c) + [!provide] PROVIDE (esp_rom_spi_cmd_start = 0x40000888) + [!provide] PROVIDE (esp_rom_opiflash_pin_config = 0x40000894) + [!provide] PROVIDE (esp_rom_spi_set_op_mode = 0x400008a0) + [!provide] PROVIDE (esp_rom_opiflash_mode_reset = 0x400008ac) + [!provide] PROVIDE (esp_rom_opiflash_exec_cmd = 0x400008b8) + [!provide] PROVIDE (esp_rom_opiflash_soft_reset = 0x400008c4) + [!provide] PROVIDE (esp_rom_opiflash_read_id = 0x400008d0) + [!provide] PROVIDE (esp_rom_opiflash_rdsr = 0x400008dc) + [!provide] PROVIDE (esp_rom_opiflash_wait_idle = 0x400008e8) + [!provide] PROVIDE (esp_rom_opiflash_wren = 0x400008f4) + [!provide] PROVIDE (esp_rom_opiflash_erase_sector = 0x40000900) + [!provide] PROVIDE (esp_rom_opiflash_erase_block_64k = 0x4000090c) + [!provide] PROVIDE (esp_rom_opiflash_erase_area = 0x40000918) + [!provide] PROVIDE (esp_rom_opiflash_read = 0x40000924) + [!provide] PROVIDE (esp_rom_opiflash_write = 0x40000930) + [!provide] PROVIDE (esp_rom_spi_set_dtr_swap_mode = 0x4000093c) + [!provide] PROVIDE (esp_rom_opiflash_exit_continuous_read_mode = 0x40000948) + [!provide] PROVIDE (esp_rom_opiflash_legacy_driver_init = 0x40000954) + [!provide] PROVIDE (esp_rom_opiflash_read_raw = 0x4004d9d4) + [!provide] PROVIDE (rom_opiflash_cmd_def = 0x3fcefff4) + [!provide] PROVIDE (rom_spi_usr_cmd_legacy_funcs = 0x3fcefff0) + 0x0000000040000960 PROVIDE (esp_rom_spiflash_wait_idle = 0x40000960) + 0x000000004000096c PROVIDE (esp_rom_spiflash_write_encrypted = 0x4000096c) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000978) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000984) + [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40000990) + [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x4000099c) + [!provide] PROVIDE (_esp_rom_spiflash_erase_sector = 0x400009a8) + [!provide] PROVIDE (_esp_rom_spiflash_erase_block = 0x400009b4) + [!provide] PROVIDE (_esp_rom_spiflash_write = 0x400009c0) + [!provide] PROVIDE (_esp_rom_spiflash_read = 0x400009cc) + [!provide] PROVIDE (_esp_rom_spiflash_unlock = 0x400009d8) + [!provide] PROVIDE (_SPIEraseArea = 0x400009e4) + [!provide] PROVIDE (_SPI_write_enable = 0x400009f0) + [!provide] PROVIDE (esp_rom_spiflash_erase_sector = 0x400009fc) + [!provide] PROVIDE (esp_rom_spiflash_erase_block = 0x40000a08) + [!provide] PROVIDE (esp_rom_spiflash_write = 0x40000a14) + [!provide] PROVIDE (esp_rom_spiflash_read = 0x40000a20) + [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000a2c) + [!provide] PROVIDE (SPIEraseArea = 0x40000a38) + [!provide] PROVIDE (SPI_write_enable = 0x40000a44) + [!provide] PROVIDE (esp_rom_spiflash_config_param = 0x40000a50) + [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000a5c) + 0x0000000040000a68 PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40000a68) + [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000a74) + [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000a80) + [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x40000a8c) + 0x0000000040000a98 PROVIDE (esp_rom_spiflash_config_clk = 0x40000a98) + 0x0000000040000aa4 PROVIDE (esp_rom_spiflash_config_readmode = 0x40000aa4) + [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000ab0) + [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x40000abc) + [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000ac8) + [!provide] PROVIDE (esp_rom_opiflash_cache_mode_config = 0x40000ad4) + [!provide] PROVIDE (esp_rom_spiflash_auto_wait_idle = 0x40000ae0) + [!provide] PROVIDE (spi_flash_attach = 0x40000aec) + [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000af8) + [!provide] PROVIDE (spi_flash_guard_set = 0x40000b04) + [!provide] PROVIDE (spi_flash_guard_get = 0x40000b10) + [!provide] PROVIDE (spi_flash_write_config_set = 0x40000b1c) + [!provide] PROVIDE (spi_flash_write_config_get = 0x40000b28) + [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x40000b34) + [!provide] PROVIDE (spi_flash_unlock = 0x40000b40) + [!provide] PROVIDE (spi_flash_erase_range = 0x40000b4c) + [!provide] PROVIDE (spi_flash_erase_sector = 0x40000b58) + [!provide] PROVIDE (spi_flash_write = 0x40000b64) + [!provide] PROVIDE (spi_flash_read = 0x40000b70) + [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000b7c) + [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000b88) + [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x40000b94) + [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x40000ba0) + [!provide] PROVIDE (spi_flash_mmap = 0x40000bac) + [!provide] PROVIDE (spi_flash_mmap_pages = 0x40000bb8) + [!provide] PROVIDE (spi_flash_munmap = 0x40000bc4) + [!provide] PROVIDE (spi_flash_mmap_dump = 0x40000bd0) + [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x40000bdc) + [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x40000be8) + [!provide] PROVIDE (spi_flash_cache2phys = 0x40000bf4) + [!provide] PROVIDE (spi_flash_phys2cache = 0x40000c00) + [!provide] PROVIDE (spi_flash_disable_cache = 0x40000c0c) + [!provide] PROVIDE (spi_flash_restore_cache = 0x40000c18) + [!provide] PROVIDE (spi_flash_cache_enabled = 0x40000c24) + [!provide] PROVIDE (spi_flash_enable_cache = 0x40000c30) + [!provide] PROVIDE (spi_cache_mode_switch = 0x40000c3c) + 0x0000000040000c48 PROVIDE (spi_common_set_dummy_output = 0x40000c48) + [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x40000c54) + [!provide] PROVIDE (esp_rom_spi_set_address_bit_len = 0x40000c60) + [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x40000c6c) + [!provide] PROVIDE (SPILock = 0x40000c78) + [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x40000c84) + [!provide] PROVIDE (SPI_Common_Command = 0x40000c90) + [!provide] PROVIDE (SPI_WakeUp = 0x40000c9c) + [!provide] PROVIDE (SPI_block_erase = 0x40000ca8) + [!provide] PROVIDE (SPI_chip_erase = 0x40000cb4) + [!provide] PROVIDE (SPI_init = 0x40000cc0) + [!provide] PROVIDE (SPI_page_program = 0x40000ccc) + [!provide] PROVIDE (SPI_read_data = 0x40000cd8) + [!provide] PROVIDE (SPI_sector_erase = 0x40000ce4) + [!provide] PROVIDE (SelectSpiFunction = 0x40000cf0) + [!provide] PROVIDE (SetSpiDrvs = 0x40000cfc) + [!provide] PROVIDE (Wait_SPI_Idle = 0x40000d08) + 0x0000000040000d14 PROVIDE (spi_dummy_len_fix = 0x40000d14) + [!provide] PROVIDE (Disable_QMode = 0x40000d20) + [!provide] PROVIDE (Enable_QMode = 0x40000d2c) + [!provide] PROVIDE (rom_spiflash_legacy_funcs = 0x3fceffe8) + 0x000000003fceffe4 PROVIDE (rom_spiflash_legacy_data = 0x3fceffe4) + [!provide] PROVIDE (g_flash_guard_ops = 0x3fceffec) + [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x40000d38) + [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000d44) + [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000d50) + [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000d5c) + [!provide] PROVIDE (spi_flash_hal_read = 0x40000d68) + [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000d74) + [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000d80) + [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000d8c) + [!provide] PROVIDE (spi_flash_hal_program_page = 0x40000d98) + [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000da4) + [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000db0) + [!provide] PROVIDE (wdt_hal_init = 0x40000dbc) + [!provide] PROVIDE (wdt_hal_deinit = 0x40000dc8) + [!provide] PROVIDE (wdt_hal_config_stage = 0x40000dd4) + [!provide] PROVIDE (wdt_hal_write_protect_disable = 0x40000de0) + [!provide] PROVIDE (wdt_hal_write_protect_enable = 0x40000dec) + [!provide] PROVIDE (wdt_hal_enable = 0x40000df8) + [!provide] PROVIDE (wdt_hal_disable = 0x40000e04) + [!provide] PROVIDE (wdt_hal_handle_intr = 0x40000e10) + [!provide] PROVIDE (wdt_hal_feed = 0x40000e1c) + [!provide] PROVIDE (wdt_hal_set_flashboot_en = 0x40000e28) + [!provide] PROVIDE (wdt_hal_is_enabled = 0x40000e34) + [!provide] PROVIDE (systimer_hal_get_counter_value = 0x40000e40) + [!provide] PROVIDE (systimer_hal_get_time = 0x40000e4c) + [!provide] PROVIDE (systimer_hal_set_alarm_target = 0x40000e58) + [!provide] PROVIDE (systimer_hal_set_alarm_period = 0x40000e64) + [!provide] PROVIDE (systimer_hal_get_alarm_value = 0x40000e70) + [!provide] PROVIDE (systimer_hal_enable_alarm_int = 0x40000e7c) + [!provide] PROVIDE (systimer_hal_on_apb_freq_update = 0x40000e88) + [!provide] PROVIDE (systimer_hal_counter_value_advance = 0x40000e94) + [!provide] PROVIDE (systimer_hal_enable_counter = 0x40000ea0) + [!provide] PROVIDE (systimer_hal_init = 0x40000eac) + [!provide] PROVIDE (systimer_hal_select_alarm_mode = 0x40000eb8) + [!provide] PROVIDE (systimer_hal_connect_alarm_counter = 0x40000ec4) + [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000ed0) + [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x40000edc) + [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000ee8) + [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000ef4) + [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000f00) + [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x40000f0c) + [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000f18) + [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000f24) + [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000f30) + [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x40000f3c) + [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000f48) + [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000f54) + [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000f60) + [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x40000f6c) + [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000f78) + [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000f84) + [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000f90) + [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x40000f9c) + [!provide] PROVIDE (spi_flash_chip_generic_read = 0x40000fa8) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x40000fb4) + [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x40000fc0) + [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x40000fcc) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x40000fd8) + [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x40000fe4) + [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x40000ff0) + [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x40000ffc) + [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x40001008) + [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x40001014) + [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x40001020) + [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fceffe0) + [!provide] PROVIDE (memspi_host_read_id_hs = 0x4000102c) + [!provide] PROVIDE (memspi_host_read_status_hs = 0x40001038) + [!provide] PROVIDE (memspi_host_flush_cache = 0x40001044) + [!provide] PROVIDE (memspi_host_erase_chip = 0x40001050) + [!provide] PROVIDE (memspi_host_erase_sector = 0x4000105c) + [!provide] PROVIDE (memspi_host_erase_block = 0x40001068) + [!provide] PROVIDE (memspi_host_program_page = 0x40001074) + [!provide] PROVIDE (memspi_host_read = 0x40001080) + [!provide] PROVIDE (memspi_host_set_write_protect = 0x4000108c) + [!provide] PROVIDE (memspi_host_set_max_read_len = 0x40001098) + [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400010a4) + [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400010b0) + [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400010bc) + [!provide] PROVIDE (esp_flash_read_id = 0x400010c8) + [!provide] PROVIDE (esp_flash_get_size = 0x400010d4) + [!provide] PROVIDE (esp_flash_erase_chip = 0x400010e0) + [!provide] PROVIDE (rom_esp_flash_erase_region = 0x400010ec) + [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x400010f8) + [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40001104) + [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40001110) + [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000111c) + [!provide] PROVIDE (esp_flash_set_protected_region = 0x40001128) + [!provide] PROVIDE (esp_flash_read = 0x40001134) + [!provide] PROVIDE (esp_flash_write = 0x40001140) + [!provide] PROVIDE (esp_flash_write_encrypted = 0x4000114c) + [!provide] PROVIDE (esp_flash_read_encrypted = 0x40001158) + [!provide] PROVIDE (esp_flash_get_io_mode = 0x40001164) + [!provide] PROVIDE (esp_flash_set_io_mode = 0x40001170) + [!provide] PROVIDE (spi_flash_boot_attach = 0x4000117c) + [!provide] PROVIDE (spi_flash_dump_counters = 0x40001188) + [!provide] PROVIDE (spi_flash_get_counters = 0x40001194) + [!provide] PROVIDE (spi_flash_op_counters_config = 0x400011a0) + [!provide] PROVIDE (spi_flash_reset_counters = 0x400011ac) + [!provide] PROVIDE (esp_flash_read_chip_id = 0x400011b8) + [!provide] PROVIDE (detect_spi_flash_chip = 0x400011c4) + [!provide] PROVIDE (esp_rom_spiflash_write_disable = 0x400011d0) + [!provide] PROVIDE (esp_flash_default_chip = 0x3fceffdc) + [!provide] PROVIDE (esp_flash_api_funcs = 0x3fceffd8) + [!provide] PROVIDE (Cache_Get_ICache_Line_Size = 0x400015fc) + [!provide] PROVIDE (Cache_Get_DCache_Line_Size = 0x40001608) + [!provide] PROVIDE (Cache_Get_Mode = 0x40001614) + 0x0000000040001620 PROVIDE (Cache_Set_ICache_Mode = 0x40001620) + 0x000000004000162c PROVIDE (Cache_Set_DCache_Mode = 0x4000162c) + [!provide] PROVIDE (Cache_Address_Through_ICache = 0x40001638) + [!provide] PROVIDE (Cache_Address_Through_DCache = 0x40001644) + [!provide] PROVIDE (Cache_Set_Default_Mode = 0x40001650) + [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x4000165c) + [!provide] PROVIDE (ROM_Boot_Cache_Init = 0x40001668) + [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x40001674) + [!provide] PROVIDE (Cache_Invalidate_DCache_Items = 0x40001680) + [!provide] PROVIDE (Cache_Clean_Items = 0x4000168c) + [!provide] PROVIDE (Cache_WriteBack_Items = 0x40001698) + [!provide] PROVIDE (Cache_Op_Addr = 0x400016a4) + 0x00000000400016b0 PROVIDE (Cache_Invalidate_Addr = 0x400016b0) + [!provide] PROVIDE (Cache_Clean_Addr = 0x400016bc) + [!provide] PROVIDE (Cache_WriteBack_Addr = 0x400016c8) + 0x00000000400016d4 PROVIDE (Cache_Invalidate_ICache_All = 0x400016d4) + 0x00000000400016e0 PROVIDE (Cache_Invalidate_DCache_All = 0x400016e0) + [!provide] PROVIDE (Cache_Clean_All = 0x400016ec) + [!provide] PROVIDE (Cache_WriteBack_All = 0x400016f8) + [!provide] PROVIDE (Cache_Mask_All = 0x40001704) + [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x40001710) + [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x4000171c) + [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x40001728) + [!provide] PROVIDE (Cache_Suspend_DCache_Autoload = 0x40001734) + [!provide] PROVIDE (Cache_Resume_DCache_Autoload = 0x40001740) + [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x4000174c) + [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x40001758) + [!provide] PROVIDE (Cache_End_ICache_Preload = 0x40001764) + [!provide] PROVIDE (Cache_Start_DCache_Preload = 0x40001770) + [!provide] PROVIDE (Cache_DCache_Preload_Done = 0x4000177c) + [!provide] PROVIDE (Cache_End_DCache_Preload = 0x40001788) + [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x40001794) + [!provide] PROVIDE (Cache_Config_ICache_Region_Autoload = 0x400017a0) + [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400017ac) + [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x400017b8) + [!provide] PROVIDE (Cache_Config_DCache_Autoload = 0x400017c4) + [!provide] PROVIDE (Cache_Config_DCache_Region_Autoload = 0x400017d0) + [!provide] PROVIDE (Cache_Enable_DCache_Autoload = 0x400017dc) + [!provide] PROVIDE (Cache_Disable_DCache_Autoload = 0x400017e8) + [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x400017f4) + [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40001800) + [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000180c) + [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40001818) + [!provide] PROVIDE (Cache_Enable_DCache_PreLock = 0x40001824) + [!provide] PROVIDE (Cache_Disable_DCache_PreLock = 0x40001830) + [!provide] PROVIDE (Cache_Lock_DCache_Items = 0x4000183c) + [!provide] PROVIDE (Cache_Unlock_DCache_Items = 0x40001848) + [!provide] PROVIDE (Cache_Lock_Addr = 0x40001854) + [!provide] PROVIDE (Cache_Unlock_Addr = 0x40001860) + 0x000000004000186c PROVIDE (Cache_Disable_ICache = 0x4000186c) + 0x0000000040001878 PROVIDE (Cache_Enable_ICache = 0x40001878) + 0x0000000040001884 PROVIDE (Cache_Disable_DCache = 0x40001884) + [!provide] PROVIDE (Cache_Enable_DCache = 0x40001890) + 0x000000004000189c PROVIDE (Cache_Suspend_ICache = 0x4000189c) + 0x00000000400018a8 PROVIDE (Cache_Resume_ICache = 0x400018a8) + 0x00000000400018b4 PROVIDE (Cache_Suspend_DCache = 0x400018b4) + 0x00000000400018c0 PROVIDE (Cache_Resume_DCache = 0x400018c0) + [!provide] PROVIDE (Cache_Occupy_Items = 0x400018cc) + [!provide] PROVIDE (Cache_Occupy_Addr = 0x400018d8) + [!provide] PROVIDE (Cache_Freeze_ICache_Enable = 0x400018e4) + [!provide] PROVIDE (Cache_Freeze_ICache_Disable = 0x400018f0) + [!provide] PROVIDE (Cache_Freeze_DCache_Enable = 0x400018fc) + [!provide] PROVIDE (Cache_Freeze_DCache_Disable = 0x40001908) + 0x0000000040001914 PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40001914) + [!provide] PROVIDE (flash2spiram_instruction_offset = 0x40001920) + [!provide] PROVIDE (flash2spiram_rodata_offset = 0x4000192c) + [!provide] PROVIDE (flash_instr_rodata_start_page = 0x40001938) + [!provide] PROVIDE (flash_instr_rodata_end_page = 0x40001944) + [!provide] PROVIDE (Cache_Set_IDROM_MMU_Info = 0x40001950) + 0x000000004000195c PROVIDE (Cache_Get_IROM_MMU_End = 0x4000195c) + 0x0000000040001968 PROVIDE (Cache_Get_DROM_MMU_End = 0x40001968) + [!provide] PROVIDE (Cache_Owner_Init = 0x40001974) + 0x0000000040001980 PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40001980) + 0x000000004000198c PROVIDE (Cache_Occupy_DCache_MEMORY = 0x4000198c) + [!provide] PROVIDE (Cache_MMU_Init = 0x40001998) + 0x00000000400019a4 PROVIDE (Cache_Ibus_MMU_Set = 0x400019a4) + 0x00000000400019b0 PROVIDE (Cache_Dbus_MMU_Set = 0x400019b0) + [!provide] PROVIDE (Cache_Count_Flash_Pages = 0x400019bc) + [!provide] PROVIDE (Cache_Flash_To_SPIRAM_Copy = 0x400019c8) + [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x400019d4) + [!provide] PROVIDE (Cache_Travel_Tag_Memory2 = 0x400019e0) + [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x400019ec) + [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x400019f8) + [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40001a04) + [!provide] PROVIDE (Cache_Get_Memory_value = 0x40001a10) + 0x0000000040001a1c PROVIDE (rom_config_instruction_cache_mode = 0x40001a1c) + 0x0000000040001a28 PROVIDE (rom_config_data_cache_mode = 0x40001a28) + [!provide] PROVIDE (rom_cache_op_cb = 0x3fceffc8) + [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fceffc4) + 0x0000000040001a34 ets_get_apb_freq = 0x40001a34 + 0x0000000040001a40 ets_get_cpu_frequency = 0x40001a40 + 0x0000000040001a4c ets_update_cpu_frequency = 0x40001a4c + 0x0000000040001a58 ets_get_printf_channel = 0x40001a58 + 0x0000000040001a64 ets_get_xtal_div = 0x40001a64 + 0x0000000040001a70 ets_set_xtal_div = 0x40001a70 + 0x0000000040001a7c ets_get_xtal_freq = 0x40001a7c + 0x0000000040001a88 gpio_input_get = 0x40001a88 + 0x0000000040001a94 gpio_matrix_in = 0x40001a94 + 0x0000000040001aa0 gpio_matrix_out = 0x40001aa0 + 0x0000000040001aac gpio_output_disable = 0x40001aac + 0x0000000040001ab8 gpio_output_enable = 0x40001ab8 + 0x0000000040001ac4 gpio_output_set = 0x40001ac4 + 0x0000000040001ad0 gpio_pad_hold = 0x40001ad0 + 0x0000000040001adc gpio_pad_input_disable = 0x40001adc + 0x0000000040001ae8 gpio_pad_input_enable = 0x40001ae8 + 0x0000000040001af4 gpio_pad_pulldown = 0x40001af4 + 0x0000000040001b00 gpio_pad_pullup = 0x40001b00 + 0x0000000040001b0c gpio_pad_select_gpio = 0x40001b0c + 0x0000000040001b18 gpio_pad_set_drv = 0x40001b18 + 0x0000000040001b24 gpio_pad_unhold = 0x40001b24 + 0x0000000040001b30 gpio_pin_wakeup_disable = 0x40001b30 + 0x0000000040001b3c gpio_pin_wakeup_enable = 0x40001b3c + 0x0000000040001b48 gpio_bypass_matrix_in = 0x40001b48 + 0x0000000040001b54 intr_matrix_set = 0x40001b54 + 0x0000000040001b60 ets_intr_lock = 0x40001b60 + 0x0000000040001b6c ets_intr_unlock = 0x40001b6c + 0x0000000040001b78 ets_isr_attach = 0x40001b78 + 0x0000000040001b84 ets_isr_mask = 0x40001b84 + 0x0000000040001b90 ets_isr_unmask = 0x40001b90 + 0x0000000040001b9c xthal_bcopy = 0x40001b9c + 0x0000000040001ba8 xthal_memcpy = 0x40001ba8 + 0x0000000040001bb4 xthal_get_ccompare = 0x40001bb4 + 0x0000000040001bc0 xthal_set_ccompare = 0x40001bc0 + 0x0000000040001bcc xthal_get_ccount = 0x40001bcc + 0x0000000040001bd8 xthal_get_interrupt = 0x40001bd8 + 0x0000000040001be4 xthal_set_intclear = 0x40001be4 + 0x0000000040001bf0 _xtos_ints_off = 0x40001bf0 + 0x0000000040001bfc _xtos_ints_on = 0x40001bfc + 0x0000000040001c08 _xtos_restore_intlevel = 0x40001c08 + 0x0000000040001c14 _xtos_set_exception_handler = 0x40001c14 + 0x0000000040001c20 _xtos_set_interrupt_handler = 0x40001c20 + 0x0000000040001c2c _xtos_set_interrupt_handler_arg = 0x40001c2c + 0x0000000040001c38 _xtos_set_intlevel = 0x40001c38 + 0x0000000040001c44 _xtos_set_vpri = 0x40001c44 + 0x0000000040001c50 md5_vector = 0x40001c50 + 0x0000000040001c5c MD5Init = 0x40001c5c + 0x0000000040001c68 MD5Update = 0x40001c68 + 0x0000000040001c74 MD5Final = 0x40001c74 + 0x0000000040001c80 hmac_md5_vector = 0x40001c80 + 0x0000000040001c8c hmac_md5 = 0x40001c8c + 0x0000000040001c98 crc32_le = 0x40001c98 + 0x0000000040001ca4 crc32_be = 0x40001ca4 + 0x0000000040001cb0 crc16_le = 0x40001cb0 + 0x0000000040001cbc crc16_be = 0x40001cbc + 0x0000000040001cc8 crc8_le = 0x40001cc8 + 0x0000000040001cd4 crc8_be = 0x40001cd4 + 0x0000000040001ce0 esp_crc8 = 0x40001ce0 + 0x0000000040001cec ets_sha_enable = 0x40001cec + 0x0000000040001cf8 ets_sha_disable = 0x40001cf8 + 0x0000000040001d04 ets_sha_get_state = 0x40001d04 + 0x0000000040001d10 ets_sha_init = 0x40001d10 + 0x0000000040001d1c ets_sha_process = 0x40001d1c + 0x0000000040001d28 ets_sha_starts = 0x40001d28 + 0x0000000040001d34 ets_sha_update = 0x40001d34 + 0x0000000040001d40 ets_sha_finish = 0x40001d40 + 0x0000000040001d4c ets_sha_clone = 0x40001d4c + 0x0000000040001d58 ets_hmac_enable = 0x40001d58 + 0x0000000040001d64 ets_hmac_disable = 0x40001d64 + 0x0000000040001d70 ets_hmac_calculate_message = 0x40001d70 + 0x0000000040001d7c ets_hmac_calculate_downstream = 0x40001d7c + 0x0000000040001d88 ets_hmac_invalidate_downstream = 0x40001d88 + 0x0000000040001d94 ets_jtag_enable_temporarily = 0x40001d94 + 0x0000000040001da0 ets_aes_enable = 0x40001da0 + 0x0000000040001dac ets_aes_disable = 0x40001dac + 0x0000000040001db8 ets_aes_setkey = 0x40001db8 + 0x0000000040001dc4 ets_aes_block = 0x40001dc4 + 0x0000000040001dd0 ets_bigint_enable = 0x40001dd0 + 0x0000000040001ddc ets_bigint_disable = 0x40001ddc + 0x0000000040001de8 ets_bigint_multiply = 0x40001de8 + 0x0000000040001df4 ets_bigint_modmult = 0x40001df4 + 0x0000000040001e00 ets_bigint_modexp = 0x40001e00 + 0x0000000040001e0c ets_bigint_wait_finish = 0x40001e0c + 0x0000000040001e18 ets_bigint_getz = 0x40001e18 + 0x0000000040001e24 ets_ds_enable = 0x40001e24 + 0x0000000040001e30 ets_ds_disable = 0x40001e30 + 0x0000000040001e3c ets_ds_start_sign = 0x40001e3c + 0x0000000040001e48 ets_ds_is_busy = 0x40001e48 + 0x0000000040001e54 ets_ds_finish_sign = 0x40001e54 + 0x0000000040001e60 ets_ds_encrypt_params = 0x40001e60 + 0x0000000040001e6c ets_aes_setkey_dec = 0x40001e6c + 0x0000000040001e78 ets_aes_setkey_enc = 0x40001e78 + 0x0000000040001e84 ets_mgf1_sha256 = 0x40001e84 + 0x0000000040001e90 ets_efuse_read = 0x40001e90 + 0x0000000040001e9c ets_efuse_program = 0x40001e9c + 0x0000000040001ea8 ets_efuse_clear_program_registers = 0x40001ea8 + 0x0000000040001eb4 ets_efuse_write_key = 0x40001eb4 + 0x0000000040001ec0 ets_efuse_get_read_register_address = 0x40001ec0 + 0x0000000040001ecc ets_efuse_get_key_purpose = 0x40001ecc + 0x0000000040001ed8 ets_efuse_key_block_unused = 0x40001ed8 + 0x0000000040001ee4 ets_efuse_find_unused_key_block = 0x40001ee4 + 0x0000000040001ef0 ets_efuse_rs_calculate = 0x40001ef0 + 0x0000000040001efc ets_efuse_count_unused_key_blocks = 0x40001efc + 0x0000000040001f08 ets_efuse_secure_boot_enabled = 0x40001f08 + 0x0000000040001f14 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x40001f14 + 0x0000000040001f20 ets_efuse_cache_encryption_enabled = 0x40001f20 + 0x0000000040001f2c ets_efuse_download_modes_disabled = 0x40001f2c + 0x0000000040001f38 ets_efuse_find_purpose = 0x40001f38 + 0x0000000040001f44 ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x40001f44 + 0x0000000040001f50 ets_efuse_force_send_resume = 0x40001f50 + 0x0000000040001f5c ets_efuse_get_flash_delay_us = 0x40001f5c + 0x0000000040001f68 ets_efuse_get_mac = 0x40001f68 + 0x0000000040001f74 ets_efuse_get_spiconfig = 0x40001f74 + 0x0000000040001f80 ets_efuse_usb_print_is_disabled = 0x40001f80 + 0x0000000040001f8c ets_efuse_get_uart_print_channel = 0x40001f8c + 0x0000000040001f98 ets_efuse_get_uart_print_control = 0x40001f98 + 0x0000000040001fa4 ets_efuse_get_wp_pad = 0x40001fa4 + 0x0000000040001fb0 ets_efuse_legacy_spi_boot_mode_disabled = 0x40001fb0 + 0x0000000040001fbc ets_efuse_security_download_modes_enabled = 0x40001fbc + 0x0000000040001fc8 ets_efuse_set_timing = 0x40001fc8 + 0x0000000040001fd4 ets_efuse_jtag_disabled = 0x40001fd4 + 0x0000000040001fe0 ets_efuse_usb_download_mode_disabled = 0x40001fe0 + 0x0000000040001fec ets_efuse_usb_module_disabled = 0x40001fec + 0x0000000040001ff8 ets_efuse_usb_device_disabled = 0x40001ff8 + 0x0000000040002004 ets_efuse_flash_octal_mode = 0x40002004 + 0x0000000040002010 ets_efuse_ecc_en = 0x40002010 + 0x000000004000201c ets_efuse_ecc_flash_page_size = 0x4000201c + 0x0000000040002028 ets_efuse_ecc_16to17_mode = 0x40002028 + 0x0000000040002034 ets_ecc_flash_enable = 0x40002034 + 0x0000000040002040 ets_ecc_flash_enable_all = 0x40002040 + 0x000000004000204c ets_ecc_flash_disable = 0x4000204c + 0x0000000040002058 ets_ecc_flash_disable_all = 0x40002058 + 0x0000000040002064 ets_ecc_get_flash_page_size = 0x40002064 + 0x0000000040002070 ets_ecc_set_flash_page_size = 0x40002070 + 0x000000004000207c ets_ecc_set_flash_byte_mode = 0x4000207c + 0x0000000040002088 ets_ecc_get_flash_byte_mode = 0x40002088 + 0x0000000040002094 ets_ecc_set_flash_range = 0x40002094 + 0x00000000400020a0 ets_ecc_get_flash_range = 0x400020a0 + 0x00000000400020ac ets_ecc_sram_enable = 0x400020ac + 0x00000000400020b8 ets_ecc_sram_disable = 0x400020b8 + 0x00000000400020c4 ets_ecc_sram_enable_all = 0x400020c4 + 0x00000000400020d0 ets_ecc_sram_disable_all = 0x400020d0 + 0x00000000400020dc ets_ecc_get_sram_page_size = 0x400020dc + 0x00000000400020e8 ets_ecc_set_sram_page_size = 0x400020e8 + 0x00000000400020f4 ets_ecc_get_sram_byte_mode = 0x400020f4 + 0x0000000040002100 ets_ecc_set_sram_byte_mode = 0x40002100 + 0x000000004000210c ets_ecc_set_sram_range = 0x4000210c + 0x0000000040002118 ets_ecc_get_sram_range = 0x40002118 + 0x000000003fceffc0 ets_ecc_table_ptr = 0x3fceffc0 + 0x0000000040002124 ets_emsa_pss_verify = 0x40002124 + 0x0000000040002130 ets_rsa_pss_verify = 0x40002130 + 0x000000004000213c ets_secure_boot_verify_bootloader_with_keys = 0x4000213c + 0x0000000040002148 ets_secure_boot_verify_signature = 0x40002148 + 0x0000000040002154 ets_secure_boot_read_key_digests = 0x40002154 + 0x0000000040002160 ets_secure_boot_revoke_public_key_digest = 0x40002160 + [!provide] PROVIDE (usb_uart_otg_rx_one_char = 0x400025a4) + [!provide] PROVIDE (usb_uart_otg_rx_one_char_block = 0x400025b0) + [!provide] PROVIDE (usb_uart_otg_tx_flush = 0x400025bc) + [!provide] PROVIDE (usb_uart_otg_tx_one_char = 0x400025c8) + [!provide] PROVIDE (usb_uart_device_rx_one_char = 0x400025d4) + [!provide] PROVIDE (usb_uart_device_rx_one_char_block = 0x400025e0) + [!provide] PROVIDE (usb_uart_device_tx_flush = 0x400025ec) + [!provide] PROVIDE (usb_uart_device_tx_one_char = 0x400025f8) + [!provide] PROVIDE (Uart_Init_USB = 0x40002604) + [!provide] PROVIDE (uart_acm_dev = 0x3fceffbc) + [!provide] PROVIDE (g_uart_print = 0x3fceffb9) + [!provide] PROVIDE (g_usb_print = 0x3fceffb8) + 0x0000000040002610 cdc_acm_class_handle_req = 0x40002610 + 0x000000004000261c cdc_acm_init = 0x4000261c + 0x0000000040002628 cdc_acm_fifo_fill = 0x40002628 + 0x0000000040002634 cdc_acm_rx_fifo_cnt = 0x40002634 + 0x0000000040002640 cdc_acm_fifo_read = 0x40002640 + 0x000000004000264c cdc_acm_irq_tx_enable = 0x4000264c + 0x0000000040002658 cdc_acm_irq_tx_disable = 0x40002658 + 0x0000000040002664 cdc_acm_irq_state_enable = 0x40002664 + 0x0000000040002670 cdc_acm_irq_state_disable = 0x40002670 + 0x000000004000267c cdc_acm_irq_tx_ready = 0x4000267c + 0x0000000040002688 cdc_acm_irq_rx_enable = 0x40002688 + 0x0000000040002694 cdc_acm_irq_rx_disable = 0x40002694 + 0x00000000400026a0 cdc_acm_irq_rx_ready = 0x400026a0 + 0x00000000400026ac cdc_acm_irq_is_pending = 0x400026ac + 0x00000000400026b8 cdc_acm_irq_callback_set = 0x400026b8 + 0x00000000400026c4 cdc_acm_line_ctrl_set = 0x400026c4 + 0x00000000400026d0 cdc_acm_line_ctrl_get = 0x400026d0 + 0x00000000400026dc cdc_acm_poll_out = 0x400026dc + 0x00000000400026e8 chip_usb_dw_did_persist = 0x400026e8 + 0x00000000400026f4 chip_usb_dw_init = 0x400026f4 + 0x0000000040002700 chip_usb_detach = 0x40002700 + 0x000000004000270c chip_usb_dw_prepare_persist = 0x4000270c + 0x0000000040002718 chip_usb_get_persist_flags = 0x40002718 + 0x0000000040002724 chip_usb_set_persist_flags = 0x40002724 + 0x0000000040002730 cpio_start = 0x40002730 + 0x000000004000273c cpio_feed = 0x4000273c + 0x0000000040002748 cpio_done = 0x40002748 + 0x0000000040002754 cpio_destroy = 0x40002754 + 0x0000000040002760 dfu_flash_init = 0x40002760 + 0x000000004000276c dfu_flash_erase = 0x4000276c + 0x0000000040002778 dfu_flash_program = 0x40002778 + 0x0000000040002784 dfu_flash_read = 0x40002784 + 0x0000000040002790 dfu_flash_attach = 0x40002790 + 0x000000004000279c dfu_cpio_callback = 0x4000279c + 0x00000000400027a8 dfu_updater_get_err = 0x400027a8 + 0x00000000400027b4 dfu_updater_clear_err = 0x400027b4 + 0x00000000400027c0 dfu_updater_enable = 0x400027c0 + 0x00000000400027cc dfu_updater_begin = 0x400027cc + 0x00000000400027d8 dfu_updater_feed = 0x400027d8 + 0x00000000400027e4 dfu_updater_end = 0x400027e4 + 0x00000000400027f0 dfu_updater_set_raw_addr = 0x400027f0 + 0x00000000400027fc dfu_updater_flash_read = 0x400027fc + 0x0000000040002808 usb_dc_prepare_persist = 0x40002808 + 0x0000000040002814 usb_dw_isr_handler = 0x40002814 + 0x0000000040002820 usb_dc_attach = 0x40002820 + 0x000000004000282c usb_dc_detach = 0x4000282c + 0x0000000040002838 usb_dc_reset = 0x40002838 + 0x0000000040002844 usb_dc_set_address = 0x40002844 + 0x0000000040002850 usb_dc_ep_check_cap = 0x40002850 + 0x000000004000285c usb_dc_ep_configure = 0x4000285c + 0x0000000040002868 usb_dc_ep_set_stall = 0x40002868 + 0x0000000040002874 usb_dc_ep_clear_stall = 0x40002874 + 0x0000000040002880 usb_dc_ep_halt = 0x40002880 + 0x000000004000288c usb_dc_ep_is_stalled = 0x4000288c + 0x0000000040002898 usb_dc_ep_enable = 0x40002898 + 0x00000000400028a4 usb_dc_ep_disable = 0x400028a4 + 0x00000000400028b0 usb_dc_ep_flush = 0x400028b0 + 0x00000000400028bc usb_dc_ep_write_would_block = 0x400028bc + 0x00000000400028c8 usb_dc_ep_write = 0x400028c8 + 0x00000000400028d4 usb_dc_ep_read_wait = 0x400028d4 + 0x00000000400028e0 usb_dc_ep_read_continue = 0x400028e0 + 0x00000000400028ec usb_dc_ep_read = 0x400028ec + 0x00000000400028f8 usb_dc_ep_set_callback = 0x400028f8 + 0x0000000040002904 usb_dc_set_status_callback = 0x40002904 + 0x0000000040002910 usb_dc_ep_mps = 0x40002910 + 0x000000004000291c usb_dc_check_poll_for_interrupts = 0x4000291c + 0x0000000040002928 mac_addr_to_serial_str_desc = 0x40002928 + 0x0000000040002934 usb_set_current_descriptor = 0x40002934 + 0x0000000040002940 usb_get_descriptor = 0x40002940 + 0x000000004000294c usb_dev_resume = 0x4000294c + 0x0000000040002958 usb_dev_get_configuration = 0x40002958 + 0x0000000040002964 usb_set_config = 0x40002964 + 0x0000000040002970 usb_deconfig = 0x40002970 + 0x000000004000297c usb_enable = 0x4000297c + 0x0000000040002988 usb_disable = 0x40002988 + 0x0000000040002994 usb_write_would_block = 0x40002994 + 0x00000000400029a0 usb_write = 0x400029a0 + 0x00000000400029ac usb_read = 0x400029ac + 0x00000000400029b8 usb_ep_set_stall = 0x400029b8 + 0x00000000400029c4 usb_ep_clear_stall = 0x400029c4 + 0x00000000400029d0 usb_ep_read_wait = 0x400029d0 + 0x00000000400029dc usb_ep_read_continue = 0x400029dc + 0x00000000400029e8 usb_transfer_ep_callback = 0x400029e8 + 0x00000000400029f4 usb_transfer = 0x400029f4 + 0x0000000040002a00 usb_cancel_transfer = 0x40002a00 + 0x0000000040002a0c usb_transfer_sync = 0x40002a0c + 0x0000000040002a18 usb_dfu_set_detach_cb = 0x40002a18 + 0x0000000040002a24 dfu_class_handle_req = 0x40002a24 + 0x0000000040002a30 dfu_status_cb = 0x40002a30 + 0x0000000040002a3c dfu_custom_handle_req = 0x40002a3c + 0x0000000040002a48 usb_dfu_init = 0x40002a48 + 0x0000000040002a54 usb_dfu_force_detach = 0x40002a54 + 0x0000000040002a60 usb_dev_deinit = 0x40002a60 + 0x0000000040002a6c usb_dw_ctrl_deinit = 0x40002a6c + 0x000000003fceffac s_usb_osglue = 0x3fceffac + 0x0000000040002a78 bt_rf_coex_get_dft_cfg = 0x40002a78 + 0x0000000040002a84 bt_rf_coex_hooks_p_set = 0x40002a84 + 0x0000000040002a90 btdm_con_maxevtime_cal_impl = 0x40002a90 + 0x0000000040002a9c btdm_controller_get_compile_version_impl = 0x40002a9c + 0x0000000040002aa8 btdm_controller_rom_data_init = 0x40002aa8 + 0x0000000040002ab4 btdm_dis_privacy_err_report_impl = 0x40002ab4 + 0x0000000040002ac0 btdm_disable_adv_delay_impl = 0x40002ac0 + 0x0000000040002acc btdm_enable_scan_continue_impl = 0x40002acc + 0x0000000040002ad8 btdm_enable_scan_forever_impl = 0x40002ad8 + 0x0000000040002ae4 btdm_get_power_state_impl = 0x40002ae4 + 0x0000000040002af0 btdm_get_prevent_sleep_flag_impl = 0x40002af0 + 0x0000000040002afc btdm_power_state_active_impl = 0x40002afc + 0x0000000040002b08 btdm_switch_phy_coded_impl = 0x40002b08 + 0x0000000040002b14 hci_acl_data_handler = 0x40002b14 + 0x0000000040002b20 hci_disconnect_cmd_handler = 0x40002b20 + 0x0000000040002b2c hci_le_con_upd_cmd_handler = 0x40002b2c + 0x0000000040002b38 hci_le_ltk_req_neg_reply_cmd_handler = 0x40002b38 + 0x0000000040002b44 hci_le_ltk_req_reply_cmd_handler = 0x40002b44 + 0x0000000040002b50 hci_le_rd_chnl_map_cmd_handler = 0x40002b50 + 0x0000000040002b5c hci_le_rd_phy_cmd_handler = 0x40002b5c + 0x0000000040002b68 hci_le_rd_rem_feats_cmd_handler = 0x40002b68 + 0x0000000040002b74 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40002b74 + 0x0000000040002b80 hci_le_rem_con_param_req_reply_cmd_handler = 0x40002b80 + 0x0000000040002b8c hci_le_set_data_len_cmd_handler = 0x40002b8c + 0x0000000040002b98 hci_le_set_phy_cmd_handler = 0x40002b98 + 0x0000000040002ba4 hci_le_start_enc_cmd_handler = 0x40002ba4 + 0x0000000040002bb0 hci_rd_auth_payl_to_cmd_handler = 0x40002bb0 + 0x0000000040002bbc hci_rd_rem_ver_info_cmd_handler = 0x40002bbc + 0x0000000040002bc8 hci_rd_rssi_cmd_handler = 0x40002bc8 + 0x0000000040002bd4 hci_rd_tx_pwr_lvl_cmd_handler = 0x40002bd4 + 0x0000000040002be0 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40002be0 + 0x0000000040002bec hci_vs_set_pref_slave_latency_cmd_handler = 0x40002bec + 0x0000000040002bf8 hci_wr_auth_payl_to_cmd_handler = 0x40002bf8 + 0x0000000040002c04 ll_channel_map_ind_handler = 0x40002c04 + 0x0000000040002c10 ll_connection_param_req_handler = 0x40002c10 + 0x0000000040002c1c ll_connection_param_rsp_handler = 0x40002c1c + 0x0000000040002c28 ll_connection_update_ind_handler = 0x40002c28 + 0x0000000040002c34 ll_enc_req_handler = 0x40002c34 + 0x0000000040002c40 ll_enc_rsp_handler = 0x40002c40 + 0x0000000040002c4c ll_feature_req_handler = 0x40002c4c + 0x0000000040002c58 ll_feature_rsp_handler = 0x40002c58 + 0x0000000040002c64 ll_length_req_handler = 0x40002c64 + 0x0000000040002c70 ll_length_rsp_handler = 0x40002c70 + 0x0000000040002c7c ll_min_used_channels_ind_handler = 0x40002c7c + 0x0000000040002c88 ll_pause_enc_req_handler = 0x40002c88 + 0x0000000040002c94 ll_pause_enc_rsp_handler = 0x40002c94 + 0x0000000040002ca0 ll_phy_req_handler = 0x40002ca0 + 0x0000000040002cac ll_phy_rsp_handler = 0x40002cac + 0x0000000040002cb8 ll_phy_update_ind_handler = 0x40002cb8 + 0x0000000040002cc4 ll_ping_req_handler = 0x40002cc4 + 0x0000000040002cd0 ll_ping_rsp_handler = 0x40002cd0 + 0x0000000040002cdc ll_slave_feature_req_handler = 0x40002cdc + 0x0000000040002ce8 ll_start_enc_req_handler = 0x40002ce8 + 0x0000000040002cf4 ll_start_enc_rsp_handler = 0x40002cf4 + 0x0000000040002d00 ll_terminate_ind_handler = 0x40002d00 + 0x0000000040002d0c ll_version_ind_handler = 0x40002d0c + 0x0000000040002d18 llc_auth_payl_nearly_to_handler = 0x40002d18 + 0x0000000040002d24 llc_auth_payl_real_to_handler = 0x40002d24 + 0x0000000040002d30 llc_encrypt_ind_handler = 0x40002d30 + 0x0000000040002d3c llc_hci_command_handler_wrapper = 0x40002d3c + 0x0000000040002d48 llc_ll_connection_param_req_pdu_send = 0x40002d48 + 0x0000000040002d54 llc_ll_connection_param_rsp_pdu_send = 0x40002d54 + 0x0000000040002d60 llc_ll_connection_update_ind_pdu_send = 0x40002d60 + 0x0000000040002d6c llc_ll_enc_req_pdu_send = 0x40002d6c + 0x0000000040002d78 llc_ll_enc_rsp_pdu_send = 0x40002d78 + 0x0000000040002d84 llc_ll_feature_req_pdu_send = 0x40002d84 + 0x0000000040002d90 llc_ll_feature_rsp_pdu_send = 0x40002d90 + 0x0000000040002d9c llc_ll_length_req_pdu_send = 0x40002d9c + 0x0000000040002da8 llc_ll_length_rsp_pdu_send = 0x40002da8 + 0x0000000040002db4 llc_ll_pause_enc_req_pdu_send = 0x40002db4 + 0x0000000040002dc0 llc_ll_pause_enc_rsp_pdu_send = 0x40002dc0 + 0x0000000040002dcc llc_ll_phy_req_pdu_send = 0x40002dcc + 0x0000000040002dd8 llc_ll_phy_rsp_pdu_send = 0x40002dd8 + 0x0000000040002de4 llc_ll_ping_req_pdu_send = 0x40002de4 + 0x0000000040002df0 llc_ll_ping_rsp_pdu_send = 0x40002df0 + 0x0000000040002dfc llc_ll_start_enc_req_pdu_send = 0x40002dfc + 0x0000000040002e08 llc_ll_start_enc_rsp_pdu_send = 0x40002e08 + 0x0000000040002e14 llc_ll_terminate_ind_pdu_send = 0x40002e14 + 0x0000000040002e20 llc_ll_unknown_rsp_pdu_send = 0x40002e20 + 0x0000000040002e2c llc_llcp_ch_map_update_ind_pdu_send = 0x40002e2c + 0x0000000040002e38 llc_llcp_phy_upd_ind_pdu_send = 0x40002e38 + 0x0000000040002e44 llc_llcp_version_ind_pdu_send = 0x40002e44 + 0x0000000040002e50 llc_op_ch_map_upd_ind_handler = 0x40002e50 + 0x0000000040002e5c llc_op_con_upd_ind_handler = 0x40002e5c + 0x0000000040002e68 llc_op_disconnect_ind_handler = 0x40002e68 + 0x0000000040002e74 llc_op_dl_upd_ind_handler = 0x40002e74 + 0x0000000040002e80 llc_op_encrypt_ind_handler = 0x40002e80 + 0x0000000040002e8c llc_op_feats_exch_ind_handler = 0x40002e8c + 0x0000000040002e98 llc_op_le_ping_ind_handler = 0x40002e98 + 0x0000000040002ea4 llc_op_phy_upd_ind_handler = 0x40002ea4 + 0x0000000040002eb0 llc_op_ver_exch_ind_handler = 0x40002eb0 + 0x0000000040002ebc llc_stopped_ind_handler = 0x40002ebc + 0x0000000040002ec8 lld_acl_rx_ind_handler = 0x40002ec8 + 0x0000000040002ed4 lld_acl_tx_cfm_handler = 0x40002ed4 + 0x0000000040002ee0 lld_adv_end_ind_handler = 0x40002ee0 + 0x0000000040002eec lld_adv_rep_ind_handler = 0x40002eec + 0x0000000040002ef8 lld_ch_map_upd_cfm_handler = 0x40002ef8 + 0x0000000040002f04 lld_con_estab_ind_handler = 0x40002f04 + 0x0000000040002f10 lld_con_evt_sd_evt_time_set = 0x40002f10 + 0x0000000040002f1c lld_con_offset_upd_ind_handler = 0x40002f1c + 0x0000000040002f28 lld_con_param_upd_cfm_handler = 0x40002f28 + 0x0000000040002f34 lld_disc_ind_handler = 0x40002f34 + 0x0000000040002f40 lld_init_end_ind_handler = 0x40002f40 + 0x0000000040002f4c lld_llcp_rx_ind_handler_wrapper = 0x40002f4c + 0x0000000040002f58 lld_llcp_tx_cfm_handler = 0x40002f58 + 0x0000000040002f64 lld_per_adv_end_ind_handler = 0x40002f64 + 0x0000000040002f70 lld_per_adv_rep_ind_handler = 0x40002f70 + 0x0000000040002f7c lld_per_adv_rx_end_ind_handler = 0x40002f7c + 0x0000000040002f88 lld_phy_coded_500k_get = 0x40002f88 + 0x0000000040002f94 lld_phy_upd_cfm_handler = 0x40002f94 + 0x0000000040002fa0 lld_scan_end_ind_handler = 0x40002fa0 + 0x0000000040002fac lld_scan_req_ind_handler = 0x40002fac + 0x0000000040002fb8 lld_sync_start_req_handler = 0x40002fb8 + 0x0000000040002fc4 lld_test_end_ind_handler = 0x40002fc4 + 0x0000000040002fd0 lld_update_rxbuf_handler = 0x40002fd0 + 0x0000000040002fdc llm_ch_map_update_ind_handler = 0x40002fdc + 0x0000000040002fe8 llm_hci_command_handler_wrapper = 0x40002fe8 + 0x0000000040002ff4 llm_scan_period_to_handler = 0x40002ff4 + 0x0000000040003000 r_Add2SelfBigHex256 = 0x40003000 + 0x000000004000300c r_AddBigHex256 = 0x4000300c + 0x0000000040003018 r_AddBigHexModP256 = 0x40003018 + 0x0000000040003024 r_AddP256 = 0x40003024 + 0x0000000040003030 r_AddPdiv2_256 = 0x40003030 + 0x000000004000303c r_GF_Jacobian_Point_Addition256 = 0x4000303c + 0x0000000040003048 r_GF_Jacobian_Point_Double256 = 0x40003048 + 0x0000000040003054 r_GF_Point_Jacobian_To_Affine256 = 0x40003054 + 0x0000000040003060 r_MultiplyBigHexByUint32_256 = 0x40003060 + 0x000000004000306c r_MultiplyBigHexModP256 = 0x4000306c + 0x0000000040003078 r_MultiplyByU16ModP256 = 0x40003078 + 0x0000000040003084 r_SubtractBigHex256 = 0x40003084 + 0x0000000040003090 r_SubtractBigHexMod256 = 0x40003090 + 0x000000004000309c r_SubtractBigHexUint32_256 = 0x4000309c + 0x00000000400030a8 r_SubtractFromSelfBigHex256 = 0x400030a8 + 0x00000000400030b4 r_SubtractFromSelfBigHexSign256 = 0x400030b4 + 0x00000000400030c0 r_aes_alloc = 0x400030c0 + 0x00000000400030cc r_aes_ccm_continue = 0x400030cc + 0x00000000400030d8 r_aes_ccm_process_e = 0x400030d8 + 0x00000000400030e4 r_aes_ccm_xor_128_lsb = 0x400030e4 + 0x00000000400030f0 r_aes_ccm_xor_128_msb = 0x400030f0 + 0x00000000400030fc r_aes_cmac_continue = 0x400030fc + 0x0000000040003108 r_aes_cmac_start = 0x40003108 + 0x0000000040003114 r_aes_k1_continue = 0x40003114 + 0x0000000040003120 r_aes_k2_continue = 0x40003120 + 0x000000004000312c r_aes_k3_continue = 0x4000312c + 0x0000000040003138 r_aes_k4_continue = 0x40003138 + 0x0000000040003144 r_aes_shift_left_128 = 0x40003144 + 0x0000000040003150 r_aes_start = 0x40003150 + 0x000000004000315c r_aes_xor_128 = 0x4000315c + 0x0000000040003168 r_assert_err = 0x40003168 + 0x0000000040003174 r_assert_param = 0x40003174 + 0x0000000040003180 r_assert_warn = 0x40003180 + 0x000000004000318c r_bigHexInversion256 = 0x4000318c + 0x0000000040003198 r_ble_sw_cca_check_isr = 0x40003198 + 0x00000000400031a4 r_ble_util_buf_acl_tx_alloc = 0x400031a4 + 0x00000000400031b0 r_ble_util_buf_acl_tx_elt_get = 0x400031b0 + 0x00000000400031bc r_ble_util_buf_acl_tx_free = 0x400031bc + 0x00000000400031c8 r_ble_util_buf_acl_tx_free_in_isr = 0x400031c8 + 0x00000000400031d4 r_ble_util_buf_adv_tx_alloc = 0x400031d4 + 0x00000000400031e0 r_ble_util_buf_adv_tx_free = 0x400031e0 + 0x00000000400031ec r_ble_util_buf_adv_tx_free_in_isr = 0x400031ec + 0x00000000400031f8 r_ble_util_buf_env_deinit = 0x400031f8 + 0x0000000040003204 r_ble_util_buf_env_init = 0x40003204 + 0x0000000040003210 r_ble_util_buf_get_rx_buf_nb = 0x40003210 + 0x000000004000321c r_ble_util_buf_get_rx_buf_size = 0x4000321c + 0x0000000040003228 r_ble_util_buf_llcp_tx_alloc = 0x40003228 + 0x0000000040003234 r_ble_util_buf_llcp_tx_free = 0x40003234 + 0x0000000040003240 r_ble_util_buf_rx_alloc = 0x40003240 + 0x000000004000324c r_ble_util_buf_rx_alloc_in_isr = 0x4000324c + 0x0000000040003258 r_ble_util_buf_rx_free = 0x40003258 + 0x0000000040003264 r_ble_util_buf_rx_free_in_isr = 0x40003264 + 0x0000000040003270 r_ble_util_buf_set_rx_buf_nb = 0x40003270 + 0x000000004000327c r_ble_util_buf_set_rx_buf_size = 0x4000327c + 0x0000000040003288 r_ble_util_data_rx_buf_reset = 0x40003288 + 0x0000000040003294 r_bt_bb_get_intr_mask = 0x40003294 + 0x00000000400032a0 r_bt_bb_intr_clear = 0x400032a0 + 0x00000000400032ac r_bt_bb_intr_mask_set = 0x400032ac + 0x00000000400032b8 r_bt_bb_isr = 0x400032b8 + 0x00000000400032c4 r_bt_rf_coex_cfg_set = 0x400032c4 + 0x00000000400032d0 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x400032d0 + 0x00000000400032dc r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get = 0x400032dc + 0x00000000400032e8 r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x400032e8 + 0x00000000400032f4 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x400032f4 + 0x0000000040003300 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40003300 + 0x000000004000330c r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x4000330c + 0x0000000040003318 r_bt_rf_coex_pti_table_get = 0x40003318 + 0x0000000040003324 r_bt_rf_coex_st_param_get = 0x40003324 + 0x0000000040003330 r_bt_rf_coex_st_param_set = 0x40003330 + 0x000000004000333c r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x4000333c + 0x0000000040003348 r_bt_rma_apply_rule_cs_fmt = 0x40003348 + 0x0000000040003354 r_bt_rma_apply_rule_cs_idx = 0x40003354 + 0x0000000040003360 r_bt_rma_configure = 0x40003360 + 0x000000004000336c r_bt_rma_deregister_rule_cs_fmt = 0x4000336c + 0x0000000040003378 r_bt_rma_deregister_rule_cs_idx = 0x40003378 + 0x0000000040003384 r_bt_rma_get_ant_by_act = 0x40003384 + 0x0000000040003390 r_bt_rma_init = 0x40003390 + 0x000000004000339c r_bt_rma_register_rule_cs_fmt = 0x4000339c + 0x00000000400033a8 r_bt_rma_register_rule_cs_idx = 0x400033a8 + 0x00000000400033b4 r_bt_rtp_apply_rule_cs_fmt = 0x400033b4 + 0x00000000400033c0 r_bt_rtp_apply_rule_cs_idx = 0x400033c0 + 0x00000000400033cc r_bt_rtp_deregister_rule_cs_fmt = 0x400033cc + 0x00000000400033d8 r_bt_rtp_deregister_rule_cs_idx = 0x400033d8 + 0x00000000400033e4 r_bt_rtp_get_txpwr_idx_by_act = 0x400033e4 + 0x00000000400033f0 r_bt_rtp_init = 0x400033f0 + 0x00000000400033fc r_bt_rtp_register_rule_cs_fmt = 0x400033fc + 0x0000000040003408 r_bt_rtp_register_rule_cs_idx = 0x40003408 + 0x0000000040003414 r_btdm_isr = 0x40003414 + 0x0000000040003420 r_btdm_task_post = 0x40003420 + 0x000000004000342c r_btdm_task_post_from_isr = 0x4000342c + 0x0000000040003438 r_btdm_task_recycle = 0x40003438 + 0x0000000040003444 r_cali_phase_match_p = 0x40003444 + 0x0000000040003450 r_cmp_abs_time = 0x40003450 + 0x000000004000345c r_cmp_dest_id = 0x4000345c + 0x0000000040003468 r_cmp_timer_id = 0x40003468 + 0x0000000040003474 r_co_bdaddr_compare = 0x40003474 + 0x0000000040003480 r_co_ble_pkt_dur_in_us = 0x40003480 + 0x000000004000348c r_co_list_extract = 0x4000348c + 0x0000000040003498 r_co_list_extract_after = 0x40003498 + 0x00000000400034a4 r_co_list_extract_sublist = 0x400034a4 + 0x00000000400034b0 r_co_list_find = 0x400034b0 + 0x00000000400034bc r_co_list_init = 0x400034bc + 0x00000000400034c8 r_co_list_insert_after = 0x400034c8 + 0x00000000400034d4 r_co_list_insert_before = 0x400034d4 + 0x00000000400034e0 r_co_list_merge = 0x400034e0 + 0x00000000400034ec r_co_list_pool_init = 0x400034ec + 0x00000000400034f8 r_co_list_pop_front = 0x400034f8 + 0x0000000040003504 r_co_list_push_back = 0x40003504 + 0x0000000040003510 r_co_list_push_back_sublist = 0x40003510 + 0x000000004000351c r_co_list_push_front = 0x4000351c + 0x0000000040003528 r_co_list_size = 0x40003528 + 0x0000000040003534 r_co_nb_good_le_channels = 0x40003534 + 0x0000000040003540 r_co_util_pack = 0x40003540 + 0x000000004000354c r_co_util_read_array_size = 0x4000354c + 0x0000000040003558 r_co_util_unpack = 0x40003558 + 0x0000000040003564 r_dbg_env_deinit = 0x40003564 + 0x0000000040003570 r_dbg_env_init = 0x40003570 + 0x000000004000357c r_dbg_platform_reset_complete = 0x4000357c + 0x0000000040003588 r_dl_upd_proc_start = 0x40003588 + 0x0000000040003594 r_dump_data = 0x40003594 + 0x00000000400035a0 r_ecc_abort_key256_generation = 0x400035a0 + 0x00000000400035ac r_ecc_gen_new_public_key = 0x400035ac + 0x00000000400035b8 r_ecc_gen_new_secret_key = 0x400035b8 + 0x00000000400035c4 r_ecc_generate_key256 = 0x400035c4 + 0x00000000400035d0 r_ecc_get_debug_Keys = 0x400035d0 + 0x00000000400035dc r_ecc_init = 0x400035dc + 0x00000000400035e8 r_ecc_is_valid_point = 0x400035e8 + 0x00000000400035f4 r_ecc_multiplication_event_handler = 0x400035f4 + 0x0000000040003600 r_ecc_point_multiplication_win_256 = 0x40003600 + 0x000000004000360c r_emi_alloc_em_mapping_by_offset = 0x4000360c + 0x0000000040003618 r_emi_base_reg_lut_show = 0x40003618 + 0x0000000040003624 r_emi_em_base_reg_show = 0x40003624 + 0x0000000040003630 r_emi_free_em_mapping_by_offset = 0x40003630 + 0x000000004000363c r_emi_get_em_mapping_idx_by_offset = 0x4000363c + 0x0000000040003648 r_emi_get_mem_addr_by_offset = 0x40003648 + 0x0000000040003654 r_emi_overwrite_em_mapping_by_offset = 0x40003654 + 0x0000000040003660 r_esp_vendor_hci_command_handler = 0x40003660 + 0x000000004000366c r_get_stack_usage = 0x4000366c + 0x0000000040003678 r_h4tl_acl_hdr_rx_evt_handler = 0x40003678 + 0x0000000040003684 r_h4tl_cmd_hdr_rx_evt_handler = 0x40003684 + 0x0000000040003690 r_h4tl_cmd_pld_rx_evt_handler = 0x40003690 + 0x000000004000369c r_h4tl_eif_io_event_post = 0x4000369c + 0x00000000400036a8 r_h4tl_eif_register = 0x400036a8 + 0x00000000400036b4 r_h4tl_init = 0x400036b4 + 0x00000000400036c0 r_h4tl_out_of_sync = 0x400036c0 + 0x00000000400036cc r_h4tl_out_of_sync_check = 0x400036cc + 0x00000000400036d8 r_h4tl_read_hdr = 0x400036d8 + 0x00000000400036e4 r_h4tl_read_next_out_of_sync = 0x400036e4 + 0x00000000400036f0 r_h4tl_read_payl = 0x400036f0 + 0x00000000400036fc r_h4tl_read_start = 0x400036fc + 0x0000000040003708 r_h4tl_rx_acl_hdr_extract = 0x40003708 + 0x0000000040003714 r_h4tl_rx_cmd_hdr_extract = 0x40003714 + 0x0000000040003720 r_h4tl_rx_done = 0x40003720 + 0x000000004000372c r_h4tl_start = 0x4000372c + 0x0000000040003738 r_h4tl_stop = 0x40003738 + 0x0000000040003744 r_h4tl_tx_done = 0x40003744 + 0x0000000040003750 r_h4tl_tx_evt_handler = 0x40003750 + 0x000000004000375c r_h4tl_write = 0x4000375c + 0x0000000040003768 r_hci_acl_tx_data_alloc = 0x40003768 + 0x0000000040003774 r_hci_acl_tx_data_received = 0x40003774 + 0x0000000040003780 r_hci_basic_cmd_send_2_controller = 0x40003780 + 0x000000004000378c r_hci_ble_adv_report_filter_check = 0x4000378c + 0x0000000040003798 r_hci_ble_adv_report_tx_check = 0x40003798 + 0x00000000400037a4 r_hci_ble_conhdl_register = 0x400037a4 + 0x00000000400037b0 r_hci_ble_conhdl_unregister = 0x400037b0 + 0x00000000400037bc r_hci_build_acl_data = 0x400037bc + 0x00000000400037c8 r_hci_build_cc_evt = 0x400037c8 + 0x00000000400037d4 r_hci_build_cs_evt = 0x400037d4 + 0x00000000400037e0 r_hci_build_evt = 0x400037e0 + 0x00000000400037ec r_hci_build_le_evt = 0x400037ec + 0x00000000400037f8 r_hci_cmd_get_max_param_size = 0x400037f8 + 0x0000000040003804 r_hci_cmd_received = 0x40003804 + 0x0000000040003810 r_hci_cmd_reject = 0x40003810 + 0x000000004000381c r_hci_evt_mask_check = 0x4000381c + 0x0000000040003828 r_hci_evt_mask_set = 0x40003828 + 0x0000000040003834 r_hci_fc_acl_buf_size_set = 0x40003834 + 0x0000000040003840 r_hci_fc_acl_en = 0x40003840 + 0x000000004000384c r_hci_fc_acl_packet_sent = 0x4000384c + 0x0000000040003858 r_hci_fc_check_host_available_nb_acl_packets = 0x40003858 + 0x0000000040003864 r_hci_fc_host_nb_acl_pkts_complete = 0x40003864 + 0x0000000040003870 r_hci_fc_init = 0x40003870 + 0x000000004000387c r_hci_look_for_cmd_desc = 0x4000387c + 0x0000000040003888 r_hci_look_for_evt_desc = 0x40003888 + 0x0000000040003894 r_hci_look_for_le_evt_desc = 0x40003894 + 0x00000000400038a0 r_hci_look_for_le_evt_desc_esp = 0x400038a0 + 0x00000000400038ac r_hci_pack_bytes = 0x400038ac + 0x00000000400038b8 r_hci_register_vendor_desc_tab = 0x400038b8 + 0x00000000400038c4 r_hci_send_2_controller = 0x400038c4 + 0x00000000400038d0 r_hci_send_2_host = 0x400038d0 + 0x00000000400038dc r_hci_tl_c2h_data_flow_on = 0x400038dc + 0x00000000400038e8 r_hci_tl_cmd_hdr_rx_evt_handler = 0x400038e8 + 0x00000000400038f4 r_hci_tl_cmd_pld_rx_evt_handler = 0x400038f4 + 0x0000000040003900 r_hci_tl_get_pkt = 0x40003900 + 0x000000004000390c r_hci_tl_hci_pkt_handler = 0x4000390c + 0x0000000040003918 r_hci_tl_hci_tx_done_evt_handler = 0x40003918 + 0x0000000040003924 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40003924 + 0x0000000040003930 r_hci_tl_save_pkt = 0x40003930 + 0x000000004000393c r_hci_tl_send = 0x4000393c + 0x0000000040003948 r_hci_tx_done = 0x40003948 + 0x0000000040003954 r_hci_tx_start = 0x40003954 + 0x0000000040003960 r_hci_tx_trigger = 0x40003960 + 0x000000004000396c r_isValidSecretKey_256 = 0x4000396c + 0x0000000040003978 r_ke_check_malloc = 0x40003978 + 0x0000000040003984 r_ke_event_callback_set = 0x40003984 + 0x0000000040003990 r_ke_event_clear = 0x40003990 + 0x000000004000399c r_ke_event_flush = 0x4000399c + 0x00000000400039a8 r_ke_event_get = 0x400039a8 + 0x00000000400039b4 r_ke_event_get_all = 0x400039b4 + 0x00000000400039c0 r_ke_event_init = 0x400039c0 + 0x00000000400039cc r_ke_event_schedule = 0x400039cc + 0x00000000400039d8 r_ke_event_set = 0x400039d8 + 0x00000000400039e4 r_ke_flush = 0x400039e4 + 0x00000000400039f0 r_ke_free = 0x400039f0 + 0x00000000400039fc r_ke_handler_search = 0x400039fc + 0x0000000040003a08 r_ke_init = 0x40003a08 + 0x0000000040003a14 r_ke_is_free = 0x40003a14 + 0x0000000040003a20 r_ke_malloc = 0x40003a20 + 0x0000000040003a2c r_ke_mem_init = 0x40003a2c + 0x0000000040003a38 r_ke_mem_is_empty = 0x40003a38 + 0x0000000040003a44 r_ke_mem_is_in_heap = 0x40003a44 + 0x0000000040003a50 r_ke_msg_alloc = 0x40003a50 + 0x0000000040003a5c r_ke_msg_dest_id_get = 0x40003a5c + 0x0000000040003a68 r_ke_msg_discard = 0x40003a68 + 0x0000000040003a74 r_ke_msg_forward = 0x40003a74 + 0x0000000040003a80 r_ke_msg_forward_new_id = 0x40003a80 + 0x0000000040003a8c r_ke_msg_free = 0x40003a8c + 0x0000000040003a98 r_ke_msg_in_queue = 0x40003a98 + 0x0000000040003aa4 r_ke_msg_save = 0x40003aa4 + 0x0000000040003ab0 r_ke_msg_send = 0x40003ab0 + 0x0000000040003abc r_ke_msg_send_basic = 0x40003abc + 0x0000000040003ac8 r_ke_msg_src_id_get = 0x40003ac8 + 0x0000000040003ad4 r_ke_queue_extract = 0x40003ad4 + 0x0000000040003ae0 r_ke_queue_insert = 0x40003ae0 + 0x0000000040003aec r_ke_sleep_check = 0x40003aec + 0x0000000040003af8 r_ke_state_get = 0x40003af8 + 0x0000000040003b04 r_ke_state_set = 0x40003b04 + 0x0000000040003b10 r_ke_task_check = 0x40003b10 + 0x0000000040003b1c r_ke_task_create = 0x40003b1c + 0x0000000040003b28 r_ke_task_delete = 0x40003b28 + 0x0000000040003b34 r_ke_task_handler_get = 0x40003b34 + 0x0000000040003b40 r_ke_task_init = 0x40003b40 + 0x0000000040003b4c r_ke_task_msg_flush = 0x40003b4c + 0x0000000040003b58 r_ke_task_saved_update = 0x40003b58 + 0x0000000040003b64 r_ke_task_schedule = 0x40003b64 + 0x0000000040003b70 r_ke_time = 0x40003b70 + 0x0000000040003b7c r_ke_time_cmp = 0x40003b7c + 0x0000000040003b88 r_ke_time_past = 0x40003b88 + 0x0000000040003b94 r_ke_timer_active = 0x40003b94 + 0x0000000040003ba0 r_ke_timer_adjust_all = 0x40003ba0 + 0x0000000040003bac r_ke_timer_clear = 0x40003bac + 0x0000000040003bb8 r_ke_timer_init = 0x40003bb8 + 0x0000000040003bc4 r_ke_timer_schedule = 0x40003bc4 + 0x0000000040003bd0 r_ke_timer_set = 0x40003bd0 + 0x0000000040003bdc r_led_init = 0x40003bdc + 0x0000000040003be8 r_led_set_all = 0x40003be8 + 0x0000000040003bf4 r_llc_aes_res_cb = 0x40003bf4 + 0x0000000040003c00 r_llc_ch_map_up_proc_err_cb = 0x40003c00 + 0x0000000040003c0c r_llc_cleanup = 0x40003c0c + 0x0000000040003c18 r_llc_cmd_cmp_send = 0x40003c18 + 0x0000000040003c24 r_llc_cmd_stat_send = 0x40003c24 + 0x0000000040003c30 r_llc_con_move_cbk = 0x40003c30 + 0x0000000040003c3c r_llc_con_plan_set_update = 0x40003c3c + 0x0000000040003c48 r_llc_con_upd_param_in_range = 0x40003c48 + 0x0000000040003c54 r_llc_disconnect = 0x40003c54 + 0x0000000040003c60 r_llc_disconnect_end = 0x40003c60 + 0x0000000040003c6c r_llc_disconnect_proc_continue = 0x40003c6c + 0x0000000040003c78 r_llc_disconnect_proc_err_cb = 0x40003c78 + 0x0000000040003c84 r_llc_dl_chg_check = 0x40003c84 + 0x0000000040003c90 r_llc_dle_proc_err_cb = 0x40003c90 + 0x0000000040003c9c r_llc_feats_exch_proc_err_cb = 0x40003c9c + 0x0000000040003ca8 r_llc_hci_cmd_handler_tab_p_get = 0x40003ca8 + 0x0000000040003cb4 r_llc_hci_command_handler = 0x40003cb4 + 0x0000000040003cc0 r_llc_hci_con_param_req_evt_send = 0x40003cc0 + 0x0000000040003ccc r_llc_hci_con_upd_info_send = 0x40003ccc + 0x0000000040003cd8 r_llc_hci_disconnected_dis = 0x40003cd8 + 0x0000000040003ce4 r_llc_hci_dl_upd_info_send = 0x40003ce4 + 0x0000000040003cf0 r_llc_hci_enc_evt_send = 0x40003cf0 + 0x0000000040003cfc r_llc_hci_feats_info_send = 0x40003cfc + 0x0000000040003d08 r_llc_hci_le_phy_upd_cmp_evt_send = 0x40003d08 + 0x0000000040003d14 r_llc_hci_ltk_request_evt_send = 0x40003d14 + 0x0000000040003d20 r_llc_hci_nb_cmp_pkts_evt_send = 0x40003d20 + 0x0000000040003d2c r_llc_hci_version_info_send = 0x40003d2c + 0x0000000040003d38 r_llc_init_term_proc = 0x40003d38 + 0x0000000040003d44 r_llc_iv_skd_rand_gen = 0x40003d44 + 0x0000000040003d50 r_llc_le_ping_proc_continue = 0x40003d50 + 0x0000000040003d5c r_llc_le_ping_proc_err_cb = 0x40003d5c + 0x0000000040003d68 r_llc_le_ping_restart = 0x40003d68 + 0x0000000040003d74 r_llc_le_ping_set = 0x40003d74 + 0x0000000040003d80 r_llc_ll_pause_enc_rsp_ack_handler = 0x40003d80 + 0x0000000040003d8c r_llc_ll_reject_ind_ack_handler = 0x40003d8c + 0x0000000040003d98 r_llc_ll_reject_ind_pdu_send = 0x40003d98 + 0x0000000040003da4 r_llc_ll_start_enc_rsp_ack_handler = 0x40003da4 + 0x0000000040003db0 r_llc_ll_terminate_ind_ack = 0x40003db0 + 0x0000000040003dbc r_llc_ll_unknown_ind_handler = 0x40003dbc + 0x0000000040003dc8 r_llc_llcp_send = 0x40003dc8 + 0x0000000040003dd4 r_llc_llcp_state_set = 0x40003dd4 + 0x0000000040003de0 r_llc_llcp_trans_timer_set = 0x40003de0 + 0x0000000040003dec r_llc_llcp_tx_check = 0x40003dec + 0x0000000040003df8 r_llc_loc_ch_map_proc_continue = 0x40003df8 + 0x0000000040003e04 r_llc_loc_con_upd_proc_continue = 0x40003e04 + 0x0000000040003e10 r_llc_loc_con_upd_proc_err_cb = 0x40003e10 + 0x0000000040003e1c r_llc_loc_dl_upd_proc_continue = 0x40003e1c + 0x0000000040003e28 r_llc_loc_encrypt_proc_continue = 0x40003e28 + 0x0000000040003e34 r_llc_loc_encrypt_proc_err_cb = 0x40003e34 + 0x0000000040003e40 r_llc_loc_feats_exch_proc_continue = 0x40003e40 + 0x0000000040003e4c r_llc_loc_phy_upd_proc_continue = 0x40003e4c + 0x0000000040003e58 r_llc_loc_phy_upd_proc_err_cb = 0x40003e58 + 0x0000000040003e64 r_llc_msg_handler_tab_p_get = 0x40003e64 + 0x0000000040003e70 r_llc_pref_param_compute = 0x40003e70 + 0x0000000040003e7c r_llc_proc_collision_check = 0x40003e7c + 0x0000000040003e88 r_llc_proc_err_ind = 0x40003e88 + 0x0000000040003e94 r_llc_proc_get = 0x40003e94 + 0x0000000040003ea0 r_llc_proc_id_get = 0x40003ea0 + 0x0000000040003eac r_llc_proc_reg = 0x40003eac + 0x0000000040003eb8 r_llc_proc_state_get = 0x40003eb8 + 0x0000000040003ec4 r_llc_proc_state_set = 0x40003ec4 + 0x0000000040003ed0 r_llc_proc_timer_pause_set = 0x40003ed0 + 0x0000000040003edc r_llc_proc_timer_set = 0x40003edc + 0x0000000040003ee8 r_llc_proc_unreg = 0x40003ee8 + 0x0000000040003ef4 r_llc_rem_ch_map_proc_continue = 0x40003ef4 + 0x0000000040003f00 r_llc_rem_con_upd_proc_continue = 0x40003f00 + 0x0000000040003f0c r_llc_rem_con_upd_proc_err_cb = 0x40003f0c + 0x0000000040003f18 r_llc_rem_dl_upd_proc = 0x40003f18 + 0x0000000040003f24 r_llc_rem_encrypt_proc_continue = 0x40003f24 + 0x0000000040003f30 r_llc_rem_encrypt_proc_err_cb = 0x40003f30 + 0x0000000040003f3c r_llc_rem_phy_upd_proc_continue = 0x40003f3c + 0x0000000040003f48 r_llc_rem_phy_upd_proc_err_cb = 0x40003f48 + 0x0000000040003f54 r_llc_role_get = 0x40003f54 + 0x0000000040003f60 r_llc_sk_gen = 0x40003f60 + 0x0000000040003f6c r_llc_start = 0x40003f6c + 0x0000000040003f78 r_llc_stop = 0x40003f78 + 0x0000000040003f84 r_llc_ver_exch_loc_proc_continue = 0x40003f84 + 0x0000000040003f90 r_llc_ver_proc_err_cb = 0x40003f90 + 0x0000000040003f9c r_llcp_pdu_handler_tab_p_get = 0x40003f9c + 0x0000000040003fa8 r_lld_aa_gen = 0x40003fa8 + 0x0000000040003fb4 r_lld_adv_adv_data_set = 0x40003fb4 + 0x0000000040003fc0 r_lld_adv_adv_data_update = 0x40003fc0 + 0x0000000040003fcc r_lld_adv_aux_ch_idx_set = 0x40003fcc + 0x0000000040003fd8 r_lld_adv_aux_evt_canceled_cbk = 0x40003fd8 + 0x0000000040003fe4 r_lld_adv_aux_evt_start_cbk = 0x40003fe4 + 0x0000000040003ff0 r_lld_adv_coex_check_ext_adv_synced = 0x40003ff0 + 0x0000000040003ffc r_lld_adv_coex_env_reset = 0x40003ffc + 0x0000000040004008 r_lld_adv_duration_update = 0x40004008 + 0x0000000040004014 r_lld_adv_dynamic_pti_process = 0x40004014 + 0x0000000040004020 r_lld_adv_end = 0x40004020 + 0x000000004000402c r_lld_adv_evt_canceled_cbk = 0x4000402c + 0x0000000040004038 r_lld_adv_evt_start_cbk = 0x40004038 + 0x0000000040004044 r_lld_adv_ext_chain_construct = 0x40004044 + 0x0000000040004050 r_lld_adv_ext_pkt_prepare = 0x40004050 + 0x000000004000405c r_lld_adv_frm_cbk = 0x4000405c + 0x0000000040004068 r_lld_adv_frm_isr = 0x40004068 + 0x0000000040004074 r_lld_adv_frm_skip_isr = 0x40004074 + 0x0000000040004080 r_lld_adv_init = 0x40004080 + 0x000000004000408c r_lld_adv_pkt_rx = 0x4000408c + 0x0000000040004098 r_lld_adv_pkt_rx_connect_ind = 0x40004098 + 0x00000000400040a4 r_lld_adv_pkt_rx_send_scan_req_evt = 0x400040a4 + 0x00000000400040b0 r_lld_adv_rand_addr_update = 0x400040b0 + 0x00000000400040bc r_lld_adv_restart = 0x400040bc + 0x00000000400040c8 r_lld_adv_scan_rsp_data_set = 0x400040c8 + 0x00000000400040d4 r_lld_adv_scan_rsp_data_update = 0x400040d4 + 0x00000000400040e0 r_lld_adv_set_tx_power = 0x400040e0 + 0x00000000400040ec r_lld_adv_start = 0x400040ec + 0x00000000400040f8 r_lld_adv_stop = 0x400040f8 + 0x0000000040004104 r_lld_adv_sync_info_set = 0x40004104 + 0x0000000040004110 r_lld_adv_sync_info_update = 0x40004110 + 0x000000004000411c r_lld_calc_aux_rx = 0x4000411c + 0x0000000040004128 r_lld_cca_alloc = 0x40004128 + 0x0000000040004134 r_lld_cca_data_reset = 0x40004134 + 0x0000000040004140 r_lld_cca_free = 0x40004140 + 0x000000004000414c r_lld_ch_assess_data_get = 0x4000414c + 0x0000000040004158 r_lld_ch_idx_get = 0x40004158 + 0x0000000040004164 r_lld_ch_map_set = 0x40004164 + 0x0000000040004170 r_lld_channel_assess = 0x40004170 + 0x000000004000417c r_lld_con_activity_act_offset_compute = 0x4000417c + 0x0000000040004188 r_lld_con_activity_offset_compute = 0x40004188 + 0x0000000040004194 r_lld_con_ch_map_update = 0x40004194 + 0x00000000400041a0 r_lld_con_cleanup = 0x400041a0 + 0x00000000400041ac r_lld_con_current_tx_power_get = 0x400041ac + 0x00000000400041b8 r_lld_con_data_flow_set = 0x400041b8 + 0x00000000400041c4 r_lld_con_data_len_update = 0x400041c4 + 0x00000000400041d0 r_lld_con_data_tx = 0x400041d0 + 0x00000000400041dc r_lld_con_enc_key_load = 0x400041dc + 0x00000000400041e8 r_lld_con_event_counter_get = 0x400041e8 + 0x00000000400041f4 r_lld_con_evt_canceled_cbk = 0x400041f4 + 0x0000000040004200 r_lld_con_evt_duration_min_get = 0x40004200 + 0x000000004000420c r_lld_con_evt_max_eff_time_cal = 0x4000420c + 0x0000000040004218 r_lld_con_evt_sd_evt_time_get = 0x40004218 + 0x0000000040004224 r_lld_con_evt_start_cbk = 0x40004224 + 0x0000000040004230 r_lld_con_evt_time_update = 0x40004230 + 0x000000004000423c r_lld_con_free_all_tx_buf = 0x4000423c + 0x0000000040004248 r_lld_con_frm_cbk = 0x40004248 + 0x0000000040004254 r_lld_con_frm_isr = 0x40004254 + 0x0000000040004260 r_lld_con_frm_skip_isr = 0x40004260 + 0x000000004000426c r_lld_con_init = 0x4000426c + 0x0000000040004278 r_lld_con_llcp_tx = 0x40004278 + 0x0000000040004284 r_lld_con_max_lat_calc = 0x40004284 + 0x0000000040004290 r_lld_con_offset_get = 0x40004290 + 0x000000004000429c r_lld_con_param_update = 0x4000429c + 0x00000000400042a8 r_lld_con_phys_update = 0x400042a8 + 0x00000000400042b4 r_lld_con_pref_slave_evt_dur_set = 0x400042b4 + 0x00000000400042c0 r_lld_con_pref_slave_latency_set = 0x400042c0 + 0x00000000400042cc r_lld_con_rssi_get = 0x400042cc + 0x00000000400042d8 r_lld_con_rx = 0x400042d8 + 0x00000000400042e4 r_lld_con_rx_channel_assess = 0x400042e4 + 0x00000000400042f0 r_lld_con_rx_enc = 0x400042f0 + 0x00000000400042fc r_lld_con_rx_isr = 0x400042fc + 0x0000000040004308 r_lld_con_rx_link_info_check = 0x40004308 + 0x0000000040004314 r_lld_con_rx_llcp_check = 0x40004314 + 0x0000000040004320 r_lld_con_rx_sync_time_update = 0x40004320 + 0x000000004000432c r_lld_con_sched = 0x4000432c + 0x0000000040004338 r_lld_con_set_tx_power = 0x40004338 + 0x0000000040004344 r_lld_con_start = 0x40004344 + 0x0000000040004350 r_lld_con_stop = 0x40004350 + 0x000000004000435c r_lld_con_tx = 0x4000435c + 0x0000000040004368 r_lld_con_tx_enc = 0x40004368 + 0x0000000040004374 r_lld_con_tx_isr = 0x40004374 + 0x0000000040004380 r_lld_con_tx_len_update = 0x40004380 + 0x000000004000438c r_lld_con_tx_len_update_for_intv = 0x4000438c + 0x0000000040004398 r_lld_con_tx_len_update_for_rate = 0x40004398 + 0x00000000400043a4 r_lld_con_tx_prog = 0x400043a4 + 0x00000000400043b0 r_lld_conn_dynamic_pti_process = 0x400043b0 + 0x00000000400043bc r_lld_continue_scan_rx_isr_end_process = 0x400043bc + 0x00000000400043c8 r_lld_ext_scan_dynamic_pti_process = 0x400043c8 + 0x00000000400043d4 r_lld_hw_cca_end_isr = 0x400043d4 + 0x00000000400043e0 r_lld_hw_cca_evt_handler = 0x400043e0 + 0x00000000400043ec r_lld_hw_cca_isr = 0x400043ec + 0x00000000400043f8 r_lld_init_cal_anchor_point = 0x400043f8 + 0x0000000040004404 r_lld_init_compute_winoffset = 0x40004404 + 0x0000000040004410 r_lld_init_connect_req_pack = 0x40004410 + 0x000000004000441c r_lld_init_end = 0x4000441c + 0x0000000040004428 r_lld_init_evt_canceled_cbk = 0x40004428 + 0x0000000040004434 r_lld_init_evt_start_cbk = 0x40004434 + 0x0000000040004440 r_lld_init_frm_cbk = 0x40004440 + 0x000000004000444c r_lld_init_frm_eof_isr = 0x4000444c + 0x0000000040004458 r_lld_init_frm_skip_isr = 0x40004458 + 0x0000000040004464 r_lld_init_init = 0x40004464 + 0x0000000040004470 r_lld_init_process_pkt_rx = 0x40004470 + 0x000000004000447c r_lld_init_process_pkt_rx_adv_ext_ind = 0x4000447c + 0x0000000040004488 r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x40004488 + 0x0000000040004494 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40004494 + 0x00000000400044a0 r_lld_init_process_pkt_tx = 0x400044a0 + 0x00000000400044ac r_lld_init_process_pkt_tx_cal_con_timestamp = 0x400044ac + 0x00000000400044b8 r_lld_init_sched = 0x400044b8 + 0x00000000400044c4 r_lld_init_set_tx_power = 0x400044c4 + 0x00000000400044d0 r_lld_init_start = 0x400044d0 + 0x00000000400044dc r_lld_init_stop = 0x400044dc + 0x00000000400044e8 r_lld_instant_proc_end = 0x400044e8 + 0x00000000400044f4 r_lld_llcp_rx_ind_handler = 0x400044f4 + 0x0000000040004500 r_lld_per_adv_ch_map_update = 0x40004500 + 0x000000004000450c r_lld_per_adv_chain_construct = 0x4000450c + 0x0000000040004518 r_lld_per_adv_cleanup = 0x40004518 + 0x0000000040004524 r_lld_per_adv_coex_env_reset = 0x40004524 + 0x0000000040004530 r_lld_per_adv_data_set = 0x40004530 + 0x000000004000453c r_lld_per_adv_data_update = 0x4000453c + 0x0000000040004548 r_lld_per_adv_dynamic_pti_process = 0x40004548 + 0x0000000040004554 r_lld_per_adv_evt_canceled_cbk = 0x40004554 + 0x0000000040004560 r_lld_per_adv_evt_start_cbk = 0x40004560 + 0x000000004000456c r_lld_per_adv_ext_pkt_prepare = 0x4000456c + 0x0000000040004578 r_lld_per_adv_frm_cbk = 0x40004578 + 0x0000000040004584 r_lld_per_adv_frm_isr = 0x40004584 + 0x0000000040004590 r_lld_per_adv_frm_skip_isr = 0x40004590 + 0x000000004000459c r_lld_per_adv_init = 0x4000459c + 0x00000000400045a8 r_lld_per_adv_init_info_get = 0x400045a8 + 0x00000000400045b4 r_lld_per_adv_list_add = 0x400045b4 + 0x00000000400045c0 r_lld_per_adv_list_rem = 0x400045c0 + 0x00000000400045cc r_lld_per_adv_sched = 0x400045cc + 0x00000000400045d8 r_lld_per_adv_set_tx_power = 0x400045d8 + 0x00000000400045e4 r_lld_per_adv_start = 0x400045e4 + 0x00000000400045f0 r_lld_per_adv_stop = 0x400045f0 + 0x00000000400045fc r_lld_per_adv_sync_info_get = 0x400045fc + 0x0000000040004608 r_lld_process_cca_data = 0x40004608 + 0x0000000040004614 r_lld_ral_search = 0x40004614 + 0x0000000040004620 r_lld_read_clock = 0x40004620 + 0x000000004000462c r_lld_res_list_add = 0x4000462c + 0x0000000040004638 r_lld_res_list_clear = 0x40004638 + 0x0000000040004644 r_lld_res_list_is_empty = 0x40004644 + 0x0000000040004650 r_lld_res_list_local_rpa_get = 0x40004650 + 0x000000004000465c r_lld_res_list_peer_rpa_get = 0x4000465c + 0x0000000040004668 r_lld_res_list_peer_update = 0x40004668 + 0x0000000040004674 r_lld_res_list_priv_mode_update = 0x40004674 + 0x0000000040004680 r_lld_res_list_rem = 0x40004680 + 0x000000004000468c r_lld_reset_reg = 0x4000468c + 0x0000000040004698 r_lld_rpa_renew = 0x40004698 + 0x00000000400046a4 r_lld_rpa_renew_evt_canceled_cbk = 0x400046a4 + 0x00000000400046b0 r_lld_rpa_renew_evt_start_cbk = 0x400046b0 + 0x00000000400046bc r_lld_rpa_renew_instant_cbk = 0x400046bc + 0x00000000400046c8 r_lld_rxdesc_check = 0x400046c8 + 0x00000000400046d4 r_lld_rxdesc_free = 0x400046d4 + 0x00000000400046e0 r_lld_scan_create_sync = 0x400046e0 + 0x00000000400046ec r_lld_scan_create_sync_cancel = 0x400046ec + 0x00000000400046f8 r_lld_scan_end = 0x400046f8 + 0x0000000040004704 r_lld_scan_evt_canceled_cbk = 0x40004704 + 0x0000000040004710 r_lld_scan_evt_start_cbk = 0x40004710 + 0x000000004000471c r_lld_scan_frm_cbk = 0x4000471c + 0x0000000040004728 r_lld_scan_frm_eof_isr = 0x40004728 + 0x0000000040004734 r_lld_scan_frm_rx_isr = 0x40004734 + 0x0000000040004740 r_lld_scan_frm_skip_isr = 0x40004740 + 0x000000004000474c r_lld_scan_init = 0x4000474c + 0x0000000040004758 r_lld_scan_params_update = 0x40004758 + 0x0000000040004764 r_lld_scan_process_pkt_rx = 0x40004764 + 0x0000000040004770 r_lld_scan_process_pkt_rx_adv_rep = 0x40004770 + 0x000000004000477c r_lld_scan_process_pkt_rx_aux_adv_ind = 0x4000477c + 0x0000000040004788 r_lld_scan_process_pkt_rx_aux_chain_ind = 0x40004788 + 0x0000000040004794 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40004794 + 0x00000000400047a0 r_lld_scan_process_pkt_rx_ext_adv = 0x400047a0 + 0x00000000400047ac r_lld_scan_process_pkt_rx_ext_adv_ind = 0x400047ac + 0x00000000400047b8 r_lld_scan_process_pkt_rx_legacy_adv = 0x400047b8 + 0x00000000400047c4 r_lld_scan_restart = 0x400047c4 + 0x00000000400047d0 r_lld_scan_sched = 0x400047d0 + 0x00000000400047dc r_lld_scan_set_tx_power = 0x400047dc + 0x00000000400047e8 r_lld_scan_start = 0x400047e8 + 0x00000000400047f4 r_lld_scan_stop = 0x400047f4 + 0x0000000040004800 r_lld_scan_sync_accept = 0x40004800 + 0x000000004000480c r_lld_scan_sync_info_unpack = 0x4000480c + 0x0000000040004818 r_lld_scan_trunc_ind = 0x40004818 + 0x0000000040004824 r_lld_sw_cca_evt_handler = 0x40004824 + 0x0000000040004830 r_lld_sw_cca_isr = 0x40004830 + 0x000000004000483c r_lld_sync_ch_map_update = 0x4000483c + 0x0000000040004848 r_lld_sync_cleanup = 0x40004848 + 0x0000000040004854 r_lld_sync_evt_canceled_cbk = 0x40004854 + 0x0000000040004860 r_lld_sync_evt_start_cbk = 0x40004860 + 0x000000004000486c r_lld_sync_frm_cbk = 0x4000486c + 0x0000000040004878 r_lld_sync_frm_eof_isr = 0x40004878 + 0x0000000040004884 r_lld_sync_frm_rx_isr = 0x40004884 + 0x0000000040004890 r_lld_sync_frm_skip_isr = 0x40004890 + 0x000000004000489c r_lld_sync_init = 0x4000489c + 0x00000000400048a8 r_lld_sync_process_pkt_rx = 0x400048a8 + 0x00000000400048b4 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400048b4 + 0x00000000400048c0 r_lld_sync_process_pkt_rx_pkt_check = 0x400048c0 + 0x00000000400048cc r_lld_sync_scan_dynamic_pti_process = 0x400048cc + 0x00000000400048d8 r_lld_sync_sched = 0x400048d8 + 0x00000000400048e4 r_lld_sync_start = 0x400048e4 + 0x00000000400048f0 r_lld_sync_stop = 0x400048f0 + 0x00000000400048fc r_lld_sync_trunc_ind = 0x400048fc + 0x0000000040004908 r_lld_test_cleanup = 0x40004908 + 0x0000000040004914 r_lld_test_evt_canceled_cbk = 0x40004914 + 0x0000000040004920 r_lld_test_evt_start_cbk = 0x40004920 + 0x000000004000492c r_lld_test_freq2chnl = 0x4000492c + 0x0000000040004938 r_lld_test_frm_cbk = 0x40004938 + 0x0000000040004944 r_lld_test_frm_isr = 0x40004944 + 0x0000000040004950 r_lld_test_init = 0x40004950 + 0x000000004000495c r_lld_test_rx_isr = 0x4000495c + 0x0000000040004968 r_lld_test_set_tx_power = 0x40004968 + 0x0000000040004974 r_lld_test_start = 0x40004974 + 0x0000000040004980 r_lld_test_stop = 0x40004980 + 0x000000004000498c r_lld_update_rxbuf = 0x4000498c + 0x0000000040004998 r_lld_update_rxbuf_isr = 0x40004998 + 0x00000000400049a4 r_lld_white_list_add = 0x400049a4 + 0x00000000400049b0 r_lld_white_list_rem = 0x400049b0 + 0x00000000400049bc r_llm_activity_free_get = 0x400049bc + 0x00000000400049c8 r_llm_activity_free_set = 0x400049c8 + 0x00000000400049d4 r_llm_activity_syncing_get = 0x400049d4 + 0x00000000400049e0 r_llm_adv_con_len_check = 0x400049e0 + 0x00000000400049ec r_llm_adv_hdl_to_id = 0x400049ec + 0x00000000400049f8 r_llm_adv_rep_flow_control_check = 0x400049f8 + 0x0000000040004a04 r_llm_adv_rep_flow_control_update = 0x40004a04 + 0x0000000040004a10 r_llm_adv_reports_list_check = 0x40004a10 + 0x0000000040004a1c r_llm_adv_set_all_release = 0x40004a1c + 0x0000000040004a28 r_llm_adv_set_dft_params = 0x40004a28 + 0x0000000040004a34 r_llm_adv_set_release = 0x40004a34 + 0x0000000040004a40 r_llm_aes_res_cb = 0x40004a40 + 0x0000000040004a4c r_llm_ble_update_adv_flow_control = 0x40004a4c + 0x0000000040004a58 r_llm_ch_map_update = 0x40004a58 + 0x0000000040004a64 r_llm_cmd_cmp_send = 0x40004a64 + 0x0000000040004a70 r_llm_cmd_stat_send = 0x40004a70 + 0x0000000040004a7c r_llm_dev_list_empty_entry = 0x40004a7c + 0x0000000040004a88 r_llm_dev_list_search = 0x40004a88 + 0x0000000040004a94 r_llm_env_adv_dup_filt_deinit = 0x40004a94 + 0x0000000040004aa0 r_llm_env_adv_dup_filt_init = 0x40004aa0 + 0x0000000040004aac r_llm_init_ble_adv_report_flow_contol = 0x40004aac + 0x0000000040004ab8 r_llm_is_dev_connected = 0x40004ab8 + 0x0000000040004ac4 r_llm_is_dev_synced = 0x40004ac4 + 0x0000000040004ad0 r_llm_is_non_con_act_ongoing_check = 0x40004ad0 + 0x0000000040004adc r_llm_is_wl_accessible = 0x40004adc + 0x0000000040004ae8 r_llm_le_evt_mask_check = 0x40004ae8 + 0x0000000040004af4 r_llm_le_features_get = 0x40004af4 + 0x0000000040004b00 r_llm_link_disc = 0x40004b00 + 0x0000000040004b0c r_llm_master_ch_map_get = 0x40004b0c + 0x0000000040004b18 r_llm_msg_handler_tab_p_get = 0x40004b18 + 0x0000000040004b24 r_llm_no_activity = 0x40004b24 + 0x0000000040004b30 r_llm_per_adv_slot_dur = 0x40004b30 + 0x0000000040004b3c r_llm_plan_elt_get = 0x40004b3c + 0x0000000040004b48 r_llm_rx_path_comp_get = 0x40004b48 + 0x0000000040004b54 r_llm_scan_start = 0x40004b54 + 0x0000000040004b60 r_llm_scan_sync_acad_attach = 0x40004b60 + 0x0000000040004b6c r_llm_scan_sync_acad_detach = 0x40004b6c + 0x0000000040004b78 r_llm_send_adv_lost_event_to_host = 0x40004b78 + 0x0000000040004b84 r_llm_tx_path_comp_get = 0x40004b84 + 0x0000000040004b90 r_misc_deinit = 0x40004b90 + 0x0000000040004b9c r_misc_free_em_buf_in_isr = 0x40004b9c + 0x0000000040004ba8 r_misc_init = 0x40004ba8 + 0x0000000040004bb4 r_misc_msg_handler_tab_p_get = 0x40004bb4 + 0x0000000040004bc0 r_notEqual256 = 0x40004bc0 + 0x0000000040004bcc r_phy_upd_proc_start = 0x40004bcc + 0x0000000040004bd8 r_platform_reset = 0x40004bd8 + 0x0000000040004be4 r_register_esp_vendor_cmd_handler = 0x40004be4 + 0x0000000040004bf0 r_rf_em_init = 0x40004bf0 + 0x0000000040004bfc r_rf_force_agc_enable = 0x40004bfc + 0x0000000040004c08 r_rf_reg_rd = 0x40004c08 + 0x0000000040004c14 r_rf_reg_wr = 0x40004c14 + 0x0000000040004c20 r_rf_reset = 0x40004c20 + 0x0000000040004c2c r_rf_rssi_convert = 0x40004c2c + 0x0000000040004c38 r_rf_rw_v9_le_disable = 0x40004c38 + 0x0000000040004c44 r_rf_rw_v9_le_enable = 0x40004c44 + 0x0000000040004c50 r_rf_sleep = 0x40004c50 + 0x0000000040004c5c r_rf_txpwr_cs_get = 0x40004c5c + 0x0000000040004c68 r_rf_txpwr_dbm_get = 0x40004c68 + 0x0000000040004c74 r_rf_util_cs_fmt_convert = 0x40004c74 + 0x0000000040004c80 r_rw_crypto_aes_ccm = 0x40004c80 + 0x0000000040004c8c r_rw_crypto_aes_encrypt = 0x40004c8c + 0x0000000040004c98 r_rw_crypto_aes_init = 0x40004c98 + 0x0000000040004ca4 r_rw_crypto_aes_k1 = 0x40004ca4 + 0x0000000040004cb0 r_rw_crypto_aes_k2 = 0x40004cb0 + 0x0000000040004cbc r_rw_crypto_aes_k3 = 0x40004cbc + 0x0000000040004cc8 r_rw_crypto_aes_k4 = 0x40004cc8 + 0x0000000040004cd4 r_rw_crypto_aes_rand = 0x40004cd4 + 0x0000000040004ce0 r_rw_crypto_aes_result_handler = 0x40004ce0 + 0x0000000040004cec r_rw_crypto_aes_s1 = 0x40004cec + 0x0000000040004cf8 r_rw_cryto_aes_cmac = 0x40004cf8 + 0x0000000040004d04 r_rw_v9_init_em_radio_table = 0x40004d04 + 0x0000000040004d10 r_rwble_isr = 0x40004d10 + 0x0000000040004d1c r_rwble_sleep_enter = 0x40004d1c + 0x0000000040004d28 r_rwble_sleep_wakeup_end = 0x40004d28 + 0x0000000040004d34 r_rwbtdm_isr_wrapper = 0x40004d34 + 0x0000000040004d40 r_rwip_active_check = 0x40004d40 + 0x0000000040004d4c r_rwip_aes_encrypt = 0x40004d4c + 0x0000000040004d58 r_rwip_assert = 0x40004d58 + 0x0000000040004d64 r_rwip_crypt_evt_handler = 0x40004d64 + 0x0000000040004d70 r_rwip_crypt_isr_handler = 0x40004d70 + 0x0000000040004d7c r_rwip_eif_get = 0x40004d7c + 0x0000000040004d88 r_rwip_half_slot_2_lpcycles = 0x40004d88 + 0x0000000040004d94 r_rwip_hus_2_lpcycles = 0x40004d94 + 0x0000000040004da0 r_rwip_isr = 0x40004da0 + 0x0000000040004dac r_rwip_lpcycles_2_hus = 0x40004dac + 0x0000000040004db8 r_rwip_prevent_sleep_clear = 0x40004db8 + 0x0000000040004dc4 r_rwip_prevent_sleep_set = 0x40004dc4 + 0x0000000040004dd0 r_rwip_schedule = 0x40004dd0 + 0x0000000040004ddc r_rwip_sleep = 0x40004ddc + 0x0000000040004de8 r_rwip_sw_int_handler = 0x40004de8 + 0x0000000040004df4 r_rwip_sw_int_req = 0x40004df4 + 0x0000000040004e00 r_rwip_time_get = 0x40004e00 + 0x0000000040004e0c r_rwip_timer_10ms_handler = 0x40004e0c + 0x0000000040004e18 r_rwip_timer_10ms_set = 0x40004e18 + 0x0000000040004e24 r_rwip_timer_hs_handler = 0x40004e24 + 0x0000000040004e30 r_rwip_timer_hs_set = 0x40004e30 + 0x0000000040004e3c r_rwip_timer_hus_handler = 0x40004e3c + 0x0000000040004e48 r_rwip_timer_hus_set = 0x40004e48 + 0x0000000040004e54 r_rwip_wakeup = 0x40004e54 + 0x0000000040004e60 r_rwip_wakeup_end = 0x40004e60 + 0x0000000040004e6c r_rwip_wlcoex_set = 0x40004e6c + 0x0000000040004e78 r_sch_alarm_clear = 0x40004e78 + 0x0000000040004e84 r_sch_alarm_init = 0x40004e84 + 0x0000000040004e90 r_sch_alarm_prog = 0x40004e90 + 0x0000000040004e9c r_sch_alarm_set = 0x40004e9c + 0x0000000040004ea8 r_sch_alarm_timer_isr = 0x40004ea8 + 0x0000000040004eb4 r_sch_arb_conflict_check = 0x40004eb4 + 0x0000000040004ec0 r_sch_arb_elt_cancel = 0x40004ec0 + 0x0000000040004ecc r_sch_arb_event_start_isr = 0x40004ecc + 0x0000000040004ed8 r_sch_arb_init = 0x40004ed8 + 0x0000000040004ee4 r_sch_arb_insert = 0x40004ee4 + 0x0000000040004ef0 r_sch_arb_prog_timer = 0x40004ef0 + 0x0000000040004efc r_sch_arb_remove = 0x40004efc + 0x0000000040004f08 r_sch_arb_sw_isr = 0x40004f08 + 0x0000000040004f14 r_sch_plan_chk = 0x40004f14 + 0x0000000040004f20 r_sch_plan_clock_wrap_offset_update = 0x40004f20 + 0x0000000040004f2c r_sch_plan_init = 0x40004f2c + 0x0000000040004f38 r_sch_plan_interval_req = 0x40004f38 + 0x0000000040004f44 r_sch_plan_offset_max_calc = 0x40004f44 + 0x0000000040004f50 r_sch_plan_offset_req = 0x40004f50 + 0x0000000040004f5c r_sch_plan_position_range_compute = 0x40004f5c + 0x0000000040004f68 r_sch_plan_rem = 0x40004f68 + 0x0000000040004f74 r_sch_plan_req = 0x40004f74 + 0x0000000040004f80 r_sch_plan_set = 0x40004f80 + 0x0000000040004f8c r_sch_prog_end_isr = 0x40004f8c + 0x0000000040004f98 r_sch_prog_init = 0x40004f98 + 0x0000000040004fa4 r_sch_prog_push = 0x40004fa4 + 0x0000000040004fb0 r_sch_prog_rx_isr = 0x40004fb0 + 0x0000000040004fbc r_sch_prog_skip_isr = 0x40004fbc + 0x0000000040004fc8 r_sch_prog_tx_isr = 0x40004fc8 + 0x0000000040004fd4 r_sch_slice_bg_add = 0x40004fd4 + 0x0000000040004fe0 r_sch_slice_bg_remove = 0x40004fe0 + 0x0000000040004fec r_sch_slice_compute = 0x40004fec + 0x0000000040004ff8 r_sch_slice_fg_add = 0x40004ff8 + 0x0000000040005004 r_sch_slice_fg_remove = 0x40005004 + 0x0000000040005010 r_sch_slice_init = 0x40005010 + 0x000000004000501c r_sch_slice_per_add = 0x4000501c + 0x0000000040005028 r_sch_slice_per_remove = 0x40005028 + 0x0000000040005034 r_sdk_config_get_bt_sleep_enable = 0x40005034 + 0x0000000040005040 r_sdk_config_get_hl_derived_opts = 0x40005040 + 0x000000004000504c r_sdk_config_get_opts = 0x4000504c + 0x0000000040005058 r_sdk_config_get_priv_opts = 0x40005058 + 0x0000000040005064 r_sdk_config_set_bt_sleep_enable = 0x40005064 + 0x0000000040005070 r_sdk_config_set_hl_derived_opts = 0x40005070 + 0x000000004000507c r_sdk_config_set_opts = 0x4000507c + 0x0000000040005088 r_specialModP256 = 0x40005088 + 0x0000000040005094 r_unloaded_area_init = 0x40005094 + 0x00000000400050a0 r_vhci_flow_off = 0x400050a0 + 0x00000000400050ac r_vhci_flow_on = 0x400050ac + 0x00000000400050b8 r_vhci_notify_host_send_available = 0x400050b8 + 0x00000000400050c4 r_vhci_send_to_host = 0x400050c4 + 0x00000000400050d0 r_vnd_hci_command_handler = 0x400050d0 + 0x00000000400050dc r_vshci_init = 0x400050dc + 0x00000000400050e8 vnd_hci_command_handler_wrapper = 0x400050e8 + 0x00000000400050f4 r_lld_legacy_adv_dynamic_pti_get = 0x400050f4 + 0x0000000040005100 r_lld_legacy_adv_dynamic_pti_process = 0x40005100 + 0x000000004000510c r_lld_ext_adv_dynamic_pti_get = 0x4000510c + 0x0000000040005118 r_lld_ext_adv_dynamic_aux_pti_process = 0x40005118 + 0x0000000040005124 r_lld_ext_adv_dynamic_pti_process = 0x40005124 + 0x0000000040005130 r_lld_adv_ext_pkt_prepare_set = 0x40005130 + 0x000000004000513c r_lld_adv_ext_chain_none_construct = 0x4000513c + 0x0000000040005148 r_lld_adv_ext_chain_connectable_construct = 0x40005148 + 0x0000000040005154 r_lld_adv_ext_chain_scannable_construct = 0x40005154 + 0x0000000040005160 r_lld_adv_pkt_rx_connect_post = 0x40005160 + 0x000000004000516c r_lld_adv_start_init_evt_param = 0x4000516c + 0x0000000040005178 r_lld_adv_start_set_cs = 0x40005178 + 0x0000000040005184 r_lld_adv_start_update_filter_policy = 0x40005184 + 0x0000000040005190 r_lld_adv_start_schedule_asap = 0x40005190 + 0x000000004000519c r_lld_con_tx_prog_new_packet_coex = 0x4000519c + 0x00000000400051a8 r_lld_con_tx_prog_new_packet = 0x400051a8 + 0x00000000400051b4 r_lld_per_adv_dynamic_pti_get = 0x400051b4 + 0x00000000400051c0 r_lld_per_adv_evt_start_chm_upd = 0x400051c0 + 0x00000000400051cc r_lld_ext_scan_dynamic_pti_get = 0x400051cc + 0x00000000400051d8 r_lld_scan_try_sched = 0x400051d8 + 0x00000000400051e4 r_lld_sync_insert = 0x400051e4 + 0x00000000400051f0 r_sch_prog_ble_push = 0x400051f0 + 0x00000000400051fc r_sch_prog_bt_push = 0x400051fc + 0x0000000040005208 r_lld_init_evt_end_type_set = 0x40005208 + 0x0000000040005214 r_lld_init_evt_end_type_get = 0x40005214 + 0x0000000040005220 r_lld_adv_direct_adv_use_rpa_addr_state_set = 0x40005220 + 0x000000004000522c r_lld_adv_direct_adv_use_rpa_addr_state_get = 0x4000522c + 0x0000000040005238 r_lld_init_evt_end_type_check_state_set = 0x40005238 + 0x0000000040005244 r_lld_init_evt_end_type_check_state_get = 0x40005244 + 0x000000003fceffa8 bt_rf_coex_cfg_p = 0x3fceffa8 + 0x000000003fceffa4 bt_rf_coex_hooks_p = 0x3fceffa4 + 0x000000003fceffa0 btdm_env_p = 0x3fceffa0 + 0x000000003fceff9c g_rw_controller_task_handle = 0x3fceff9c + 0x000000003fceff98 g_rw_init_sem = 0x3fceff98 + 0x000000003fceff94 g_rw_schd_queue = 0x3fceff94 + 0x000000003fceff90 lld_init_env = 0x3fceff90 + 0x000000003fceff8c lld_rpa_renew_env = 0x3fceff8c + 0x000000003fceff88 lld_scan_env = 0x3fceff88 + 0x000000003fceff84 lld_scan_sync_env = 0x3fceff84 + 0x000000003fceff80 lld_test_env = 0x3fceff80 + 0x000000003fceff7c p_ble_util_buf_env = 0x3fceff7c + 0x000000003fceff78 p_lld_env = 0x3fceff78 + 0x000000003fceff74 p_llm_env = 0x3fceff74 + 0x000000003fceff70 r_h4tl_eif_p = 0x3fceff70 + 0x000000003fceff6c r_hli_funcs_p = 0x3fceff6c + 0x000000003fceff68 r_ip_funcs_p = 0x3fceff68 + 0x000000003fceff64 r_modules_funcs_p = 0x3fceff64 + 0x000000003fceff60 r_osi_funcs_p = 0x3fceff60 + 0x000000003fceff5c r_plf_funcs_p = 0x3fceff5c + 0x000000003fceff58 vhci_env_p = 0x3fceff58 + 0x000000003fceff54 aa_gen = 0x3fceff54 + 0x000000003fceff48 aes_env = 0x3fceff48 + 0x000000003fcefef8 bt_rf_coex_cfg_cb = 0x3fcefef8 + 0x000000003fcefef4 btdm_pwr_state = 0x3fcefef4 + 0x000000003fcefef0 btdm_slp_err = 0x3fcefef0 + 0x000000003fcefee8 ecc_env = 0x3fcefee8 + 0x000000003fcefee0 esp_handler = 0x3fcefee0 + 0x000000003fcefed8 esp_vendor_cmd = 0x3fcefed8 + 0x000000003fcefed4 g_adv_delay_dis = 0x3fcefed4 + 0x000000003fcefed0 g_conflict_elt = 0x3fcefed0 + 0x000000003fcefec0 g_eif_api = 0x3fcefec0 + 0x000000003fcefeb4 g_event_empty = 0x3fcefeb4 + 0x000000003fcefeaa g_llc_state = 0x3fcefeaa + 0x000000003fcefea9 g_llm_state = 0x3fcefea9 + 0x000000003fcefea7 g_max_evt_env = 0x3fcefea7 + 0x000000003fcefea6 g_misc_state = 0x3fcefea6 + 0x000000003fcefe8a g_rma_rule_db = 0x3fcefe8a + 0x000000003fcefe6e g_rtp_rule_db = 0x3fcefe6e + 0x000000003fcefe6d g_scan_forever = 0x3fcefe6d + 0x000000003fcefe6c g_time_msb = 0x3fcefe6c + 0x000000003fcefe44 h4tl_env = 0x3fcefe44 + 0x000000003fcefe21 hci_env = 0x3fcefe21 + 0x000000003fcefe20 hci_ext_host = 0x3fcefe20 + 0x000000003fcefe18 hci_fc_env = 0x3fcefe18 + 0x000000003fcefdec hci_tl_env = 0x3fcefdec + 0x000000003fcefdbc ke_env = 0x3fcefdbc + 0x000000003fcefd7c ke_event_env = 0x3fcefd7c + 0x000000003fcefd00 ke_task_env = 0x3fcefd00 + 0x000000003fcefcd8 llc_env = 0x3fcefcd8 + 0x000000003fcefcb0 lld_adv_env = 0x3fcefcb0 + 0x000000003fcefc88 lld_con_env = 0x3fcefc88 + 0x000000003fcefc80 lld_exp_sync_pos_tab = 0x3fcefc80 + 0x000000003fcefc58 lld_per_adv_env = 0x3fcefc58 + 0x000000003fcefc30 lld_sync_env = 0x3fcefc30 + 0x000000003fcefc24 llm_le_adv_flow_env = 0x3fcefc24 + 0x000000003fcefc20 rw_sleep_enable = 0x3fcefc20 + 0x000000003fcefc18 rwble_env = 0x3fcefc18 + 0x000000003fcefbfc rwip_env = 0x3fcefbfc + 0x000000003fcefbf0 rwip_param = 0x3fcefbf0 + 0x000000003fcefbec rwip_prog_delay = 0x3fcefbec + 0x000000003fcefbb4 rwip_rf = 0x3fcefbb4 + 0x000000003fcefbac sch_alarm_env = 0x3fcefbac + 0x000000003fcefb98 sch_arb_env = 0x3fcefb98 + 0x000000003fcefb90 sch_plan_env = 0x3fcefb90 + 0x000000003fcefa8c sch_prog_env = 0x3fcefa8c + 0x000000003fcefa2c sch_slice_env = 0x3fcefa2c + 0x000000003fcefa24 sch_slice_params = 0x3fcefa24 + 0x000000003fcefa1c timer_env = 0x3fcefa1c + 0x000000003fcefa18 unloaded_area = 0x3fcefa18 + 0x000000003fcefa14 vshci_state = 0x3fcefa14 + 0x000000003fcefa08 TASK_DESC_LLC = 0x3fcefa08 + 0x000000003fcef9fc TASK_DESC_LLM = 0x3fcef9fc + 0x000000003fcef9f0 TASK_DESC_VSHCI = 0x3fcef9f0 + 0x000000003fcef9e8 co_default_bdaddr = 0x3fcef9e8 + 0x000000003fcef9e4 dbg_assert_block = 0x3fcef9e4 + 0x000000003fcef9e0 g_bt_plf_log_level = 0x3fcef9e0 + 0x000000003fcef9bc hci_cmd_desc_tab_vs_esp = 0x3fcef9bc + 0x000000003fcef9a4 hci_command_handler_tab_esp = 0x3fcef9a4 + 0x000000003fcef9a0 privacy_en = 0x3fcef9a0 + 0x000000003fcef958 sdk_cfg_priv_opts = 0x3fcef958 + 0x000000003ff1ffdc BasePoint_x_256 = 0x3ff1ffdc + 0x000000003ff1ffbc BasePoint_y_256 = 0x3ff1ffbc + 0x000000003ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c + 0x000000003ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c + 0x000000003ff1ff5c DebugE256SecretKey = 0x3ff1ff5c + 0x000000003ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0 + 0x000000003ff1f79a LLM_AA_CT1 = 0x3ff1f79a + 0x000000003ff1f798 LLM_AA_CT2 = 0x3ff1f798 + 0x000000003ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790 + 0x000000003ff1f784 TASK_DESC_MISC = 0x3ff1f784 + 0x000000003ff1f766 adv_evt_prop2type = 0x3ff1f766 + 0x000000003ff1f761 adv_evt_type2prop = 0x3ff1f761 + 0x000000003ff1f751 aes_cmac_zero = 0x3ff1f751 + 0x000000003ff1f741 aes_k2_salt = 0x3ff1f741 + 0x000000003ff1f73c aes_k3_id64 = 0x3ff1f73c + 0x000000003ff1f72c aes_k3_salt = 0x3ff1f72c + 0x000000003ff1f728 aes_k4_id6 = 0x3ff1f728 + 0x000000003ff1f718 aes_k4_salt = 0x3ff1f718 + 0x000000003ff1f6ec bigHexP256 = 0x3ff1f6ec + 0x000000003ff1f6e2 byte_tx_time = 0x3ff1f6e2 + 0x000000003ff1f6dc co_null_bdaddr = 0x3ff1f6dc + 0x000000003ff1f6d7 co_phy_mask_to_rate = 0x3ff1f6d7 + 0x000000003ff1f6d2 co_phy_mask_to_value = 0x3ff1f6d2 + 0x000000003ff1f6ce co_phy_to_rate = 0x3ff1f6ce + 0x000000003ff1f6ca co_phy_value_to_mask = 0x3ff1f6ca + 0x000000003ff1f6c5 co_rate_to_byte_dur_us = 0x3ff1f6c5 + 0x000000003ff1f6c0 co_rate_to_phy = 0x3ff1f6c0 + 0x000000003ff1f6bc co_rate_to_phy_mask = 0x3ff1f6bc + 0x000000003ff1f6ac co_sca2ppm = 0x3ff1f6ac + 0x000000003ff1f680 coef_B = 0x3ff1f680 + 0x000000003ff1f678 connect_req_dur_tab = 0x3ff1f678 + 0x000000003ff1f5f4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5f4 + 0x000000003ff1f526 em_base_reg_lut = 0x3ff1f526 + 0x000000003ff1f51e fixed_tx_time = 0x3ff1f51e + 0x000000003ff1f518 h4tl_msgtype2hdrlen = 0x3ff1f518 + 0x000000003ff1f4e8 hci_cmd_desc_root_tab = 0x3ff1f4e8 + 0x000000003ff1f47c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f47c + 0x000000003ff1f44c hci_cmd_desc_tab_info_par = 0x3ff1f44c + 0x000000003ff1f0b0 hci_cmd_desc_tab_le = 0x3ff1f0b0 + 0x000000003ff1f098 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f098 + 0x000000003ff1f08c hci_cmd_desc_tab_stat_par = 0x3ff1f08c + 0x000000003ff1f050 hci_cmd_desc_tab_vs = 0x3ff1f050 + 0x000000003ff1f008 hci_evt_desc_tab = 0x3ff1f008 + 0x000000003ff1ef68 hci_evt_le_desc_tab = 0x3ff1ef68 + 0x000000003ff1ef60 hci_evt_le_desc_tab_esp = 0x3ff1ef60 + 0x000000003ff1ef57 hci_rsvd_evt_msk = 0x3ff1ef57 + 0x000000003ff1ef54 lld_aux_phy_to_rate = 0x3ff1ef54 + 0x000000003ff1ef4c lld_init_max_aux_dur_tab = 0x3ff1ef4c + 0x000000003ff1ef44 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef44 + 0x000000003ff1ef3c lld_scan_max_aux_dur_tab = 0x3ff1ef3c + 0x000000003ff1ef34 lld_sync_max_aux_dur_tab = 0x3ff1ef34 + 0x000000003ff1ef2c llm_local_le_feats = 0x3ff1ef2c + 0x000000003ff1ef24 llm_local_le_states = 0x3ff1ef24 + 0x000000003ff1eefc llm_local_supp_cmds = 0x3ff1eefc + 0x000000003ff1eedc maxSecretKey_256 = 0x3ff1eedc + 0x000000003ff1eed4 max_data_tx_time = 0x3ff1eed4 + 0x000000003ff1eec3 one_bits = 0x3ff1eec3 + 0x000000003ff1eebe rwip_coex_cfg = 0x3ff1eebe + 0x000000003ff1eea8 rwip_priority = 0x3ff1eea8 + 0x000000003ff1ee5c veryBigHexP256 = 0x3ff1ee5c + 0x0000000040005250 esp_pp_rom_version_get = 0x40005250 + 0x000000004000525c RC_GetBlockAckTime = 0x4000525c + 0x0000000040005268 ebuf_list_remove = 0x40005268 + 0x0000000040005274 esf_buf_alloc = 0x40005274 + 0x0000000040005280 esf_buf_alloc_dynamic = 0x40005280 + 0x000000004000528c esf_buf_recycle = 0x4000528c + 0x0000000040005298 GetAccess = 0x40005298 + 0x00000000400052a4 hal_mac_is_low_rate_enabled = 0x400052a4 + 0x00000000400052b0 hal_mac_tx_get_blockack = 0x400052b0 + 0x00000000400052bc hal_mac_tx_set_ppdu = 0x400052bc + 0x00000000400052c8 ic_get_trc = 0x400052c8 + 0x00000000400052d4 ic_mac_deinit = 0x400052d4 + 0x00000000400052e0 ic_mac_init = 0x400052e0 + 0x00000000400052ec ic_interface_enabled = 0x400052ec + 0x00000000400052f8 is_lmac_idle = 0x400052f8 + 0x0000000040005304 lmacAdjustTimestamp = 0x40005304 + 0x0000000040005310 lmacDiscardAgedMSDU = 0x40005310 + 0x000000004000531c lmacDiscardMSDU = 0x4000531c + 0x0000000040005328 lmacEndFrameExchangeSequence = 0x40005328 + 0x0000000040005334 lmacIsIdle = 0x40005334 + 0x0000000040005340 lmacIsLongFrame = 0x40005340 + 0x000000004000534c lmacMSDUAged = 0x4000534c + 0x0000000040005358 lmacPostTxComplete = 0x40005358 + 0x0000000040005364 lmacProcessAllTxTimeout = 0x40005364 + 0x0000000040005370 lmacProcessCollisions = 0x40005370 + 0x000000004000537c lmacProcessRxSucData = 0x4000537c + 0x0000000040005388 lmacReachLongLimit = 0x40005388 + 0x0000000040005394 lmacReachShortLimit = 0x40005394 + 0x00000000400053a0 lmacRecycleMPDU = 0x400053a0 + 0x00000000400053ac lmacRxDone = 0x400053ac + 0x00000000400053b8 lmacSetTxFrame = 0x400053b8 + 0x00000000400053c4 lmacTxDone = 0x400053c4 + 0x00000000400053d0 lmacTxFrame = 0x400053d0 + 0x00000000400053dc mac_tx_set_duration = 0x400053dc + 0x00000000400053e8 mac_tx_set_htsig = 0x400053e8 + 0x00000000400053f4 mac_tx_set_plcp0 = 0x400053f4 + 0x0000000040005400 mac_tx_set_plcp1 = 0x40005400 + 0x000000004000540c mac_tx_set_plcp2 = 0x4000540c + 0x0000000040005418 pm_check_state = 0x40005418 + 0x0000000040005424 pm_disable_dream_timer = 0x40005424 + 0x0000000040005430 pm_disable_sleep_delay_timer = 0x40005430 + 0x000000004000543c pm_dream = 0x4000543c + 0x0000000040005448 pm_mac_wakeup = 0x40005448 + 0x0000000040005454 pm_mac_sleep = 0x40005454 + 0x0000000040005460 pm_enable_active_timer = 0x40005460 + 0x000000004000546c pm_enable_sleep_delay_timer = 0x4000546c + 0x0000000040005478 pm_local_tsf_process = 0x40005478 + 0x0000000040005484 pm_set_beacon_filter = 0x40005484 + 0x0000000040005490 pm_is_in_wifi_slice_threshold = 0x40005490 + 0x000000004000549c pm_is_waked = 0x4000549c + 0x00000000400054a8 pm_keep_alive = 0x400054a8 + 0x00000000400054b4 pm_on_beacon_rx = 0x400054b4 + 0x00000000400054c0 pm_on_data_rx = 0x400054c0 + 0x00000000400054cc pm_on_tbtt = 0x400054cc + 0x00000000400054d8 pm_parse_beacon = 0x400054d8 + 0x00000000400054e4 pm_process_tim = 0x400054e4 + 0x00000000400054f0 pm_rx_beacon_process = 0x400054f0 + 0x00000000400054fc pm_rx_data_process = 0x400054fc + 0x0000000040005508 pm_sleep = 0x40005508 + 0x0000000040005514 pm_sleep_for = 0x40005514 + 0x0000000040005520 pm_tbtt_process = 0x40005520 + 0x000000004000552c ppAMPDU2Normal = 0x4000552c + 0x0000000040005538 ppAssembleAMPDU = 0x40005538 + 0x0000000040005544 ppCalFrameTimes = 0x40005544 + 0x0000000040005550 ppCalSubFrameLength = 0x40005550 + 0x000000004000555c ppCalTxAMPDULength = 0x4000555c + 0x0000000040005568 ppCheckTxAMPDUlength = 0x40005568 + 0x0000000040005574 ppDequeueRxq_Locked = 0x40005574 + 0x0000000040005580 ppDequeueTxQ = 0x40005580 + 0x000000004000558c ppEmptyDelimiterLength = 0x4000558c + 0x0000000040005598 ppEnqueueRxq = 0x40005598 + 0x00000000400055a4 ppEnqueueTxDone = 0x400055a4 + 0x00000000400055b0 ppGetTxQFirstAvail_Locked = 0x400055b0 + 0x00000000400055bc ppGetTxframe = 0x400055bc + 0x00000000400055c8 ppMapTxQueue = 0x400055c8 + 0x00000000400055d4 ppProcTxSecFrame = 0x400055d4 + 0x00000000400055e0 ppProcessRxPktHdr = 0x400055e0 + 0x00000000400055ec ppProcessTxQ = 0x400055ec + 0x00000000400055f8 ppRecordBarRRC = 0x400055f8 + 0x0000000040005604 lmacRequestTxopQueue = 0x40005604 + 0x0000000040005610 lmacReleaseTxopQueue = 0x40005610 + 0x000000004000561c ppRecycleAmpdu = 0x4000561c + 0x0000000040005628 ppRecycleRxPkt = 0x40005628 + 0x0000000040005634 ppResortTxAMPDU = 0x40005634 + 0x0000000040005640 ppResumeTxAMPDU = 0x40005640 + 0x0000000040005658 ppRxPkt = 0x40005658 + 0x0000000040005664 ppRxProtoProc = 0x40005664 + 0x0000000040005670 ppSearchTxQueue = 0x40005670 + 0x000000004000567c ppSearchTxframe = 0x4000567c + 0x0000000040005688 ppSelectNextQueue = 0x40005688 + 0x0000000040005694 ppSubFromAMPDU = 0x40005694 + 0x00000000400056a0 ppTask = 0x400056a0 + 0x00000000400056ac ppTxPkt = 0x400056ac + 0x00000000400056b8 ppTxProtoProc = 0x400056b8 + 0x00000000400056c4 ppTxqUpdateBitmap = 0x400056c4 + 0x00000000400056d0 pp_coex_tx_request = 0x400056d0 + 0x00000000400056dc pp_hdrsize = 0x400056dc + 0x00000000400056e8 pp_post = 0x400056e8 + 0x00000000400056f4 pp_process_hmac_waiting_txq = 0x400056f4 + 0x0000000040005700 rcGetAmpduSched = 0x40005700 + 0x000000004000570c rcUpdateRxDone = 0x4000570c + 0x0000000040005718 rc_get_trc = 0x40005718 + 0x0000000040005724 rc_get_trc_by_index = 0x40005724 + 0x0000000040005730 rcAmpduLowerRate = 0x40005730 + 0x000000004000573c rcampduuprate = 0x4000573c + 0x0000000040005748 rcClearCurAMPDUSched = 0x40005748 + 0x0000000040005754 rcClearCurSched = 0x40005754 + 0x0000000040005760 rcClearCurStat = 0x40005760 + 0x000000004000576c rcGetSched = 0x4000576c + 0x0000000040005778 rcLowerSched = 0x40005778 + 0x0000000040005784 rcSetTxAmpduLimit = 0x40005784 + 0x0000000040005790 rcTxUpdatePer = 0x40005790 + 0x000000004000579c rcUpdateAckSnr = 0x4000579c + 0x00000000400057a8 rcUpdateRate = 0x400057a8 + 0x00000000400057c0 rcUpdateTxDoneAmpdu2 = 0x400057c0 + 0x00000000400057cc rcUpSched = 0x400057cc + 0x00000000400057d8 rssi_margin = 0x400057d8 + 0x00000000400057e4 rx11NRate2AMPDULimit = 0x400057e4 + 0x00000000400057f0 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x400057f0 + 0x00000000400057fc TRC_AMPDU_PER_UP_THRESHOLD = 0x400057fc + 0x0000000040005808 trc_calc_duration = 0x40005808 + 0x0000000040005814 trc_isTxAmpduOperational = 0x40005814 + 0x0000000040005820 trc_onAmpduOp = 0x40005820 + 0x000000004000582c TRC_PER_IS_GOOD = 0x4000582c + 0x0000000040005838 trc_SetTxAmpduState = 0x40005838 + 0x0000000040005844 trc_tid_isTxAmpduOperational = 0x40005844 + 0x0000000040005850 trcAmpduSetState = 0x40005850 + 0x000000004000585c wDevCheckBlockError = 0x4000585c + 0x0000000040005868 wDev_AppendRxBlocks = 0x40005868 + 0x0000000040005874 wDev_DiscardFrame = 0x40005874 + 0x0000000040005880 wDev_GetNoiseFloor = 0x40005880 + 0x000000004000588c wDev_IndicateAmpdu = 0x4000588c + 0x0000000040005898 wDev_IndicateFrame = 0x40005898 + 0x00000000400058a4 wdev_bank_store = 0x400058a4 + 0x00000000400058b0 wdev_bank_load = 0x400058b0 + 0x00000000400058bc wdev_mac_reg_load = 0x400058bc + 0x00000000400058c8 wdev_mac_reg_store = 0x400058c8 + 0x00000000400058d4 wdev_mac_special_reg_load = 0x400058d4 + 0x00000000400058e0 wdev_mac_special_reg_store = 0x400058e0 + 0x00000000400058ec wdev_mac_wakeup = 0x400058ec + 0x00000000400058f8 wdev_mac_sleep = 0x400058f8 + 0x0000000040005904 hal_mac_is_dma_enable = 0x40005904 + 0x0000000040005910 wDev_ProcessFiq = 0x40005910 + 0x000000004000591c wDev_ProcessRxSucData = 0x4000591c + 0x0000000040005928 wdevProcessRxSucDataAll = 0x40005928 + 0x0000000040005934 wdev_csi_len_align = 0x40005934 + 0x0000000040005940 ppDequeueTxDone_Locked = 0x40005940 + 0x000000004000594c ppProcTxDone = 0x4000594c + 0x0000000040005958 pm_tx_data_done_process = 0x40005958 + 0x0000000040005964 config_is_cache_tx_buf_enabled = 0x40005964 + 0x0000000040005970 ppMapWaitTxq = 0x40005970 + 0x000000004000597c ppProcessWaitingQueue = 0x4000597c + 0x0000000040005988 ppDisableQueue = 0x40005988 + 0x0000000040005994 pm_allow_tx = 0x40005994 + 0x00000000400059a0 wdev_is_data_in_rxlist = 0x400059a0 + 0x00000000400059ac ppProcTxCallback = 0x400059ac + 0x000000003ff1ee58 our_instances_ptr = 0x3ff1ee58 + 0x000000003fcef954 pTxRx = 0x3fcef954 + 0x000000003fcef950 lmacConfMib_ptr = 0x3fcef950 + 0x000000003fcef94c our_wait_eb = 0x3fcef94c + 0x000000003fcef948 our_tx_eb = 0x3fcef948 + 0x000000003fcef944 pp_wdev_funcs = 0x3fcef944 + 0x000000003fcef940 g_osi_funcs_p = 0x3fcef940 + 0x000000003fcef93c wDevCtrl_ptr = 0x3fcef93c + 0x000000003ff1ee54 g_wdev_last_desc_reset_ptr = 0x3ff1ee54 + 0x000000003fcef938 wDevMacSleep_ptr = 0x3fcef938 + 0x000000003fcef934 g_lmac_cnt_ptr = 0x3fcef934 + 0x000000003ff1ee50 our_controls_ptr = 0x3ff1ee50 + 0x000000003fcef930 pp_sig_cnt_ptr = 0x3fcef930 + 0x000000003fcef92c g_eb_list_desc_ptr = 0x3fcef92c + 0x000000003fcef928 s_fragment_ptr = 0x3fcef928 + 0x000000003fcef924 if_ctrl_ptr = 0x3fcef924 + 0x000000003fcef920 g_intr_lock_mux = 0x3fcef920 + 0x000000003fcef91c g_wifi_global_lock = 0x3fcef91c + 0x000000003fcef918 s_wifi_queue = 0x3fcef918 + 0x000000003fcef914 pp_task_hdl = 0x3fcef914 + 0x000000003fcef910 s_pp_task_create_sem = 0x3fcef910 + 0x000000003fcef90c s_pp_task_del_sem = 0x3fcef90c + 0x000000003fcef908 g_wifi_menuconfig_ptr = 0x3fcef908 + 0x000000003fcef904 xphyQueue = 0x3fcef904 + 0x000000003fcef900 ap_no_lr_ptr = 0x3fcef900 + 0x000000003fcef8fc rc11BSchedTbl_ptr = 0x3fcef8fc + 0x000000003fcef8f8 rc11NSchedTbl_ptr = 0x3fcef8f8 + 0x000000003fcef8f4 rcLoRaSchedTbl_ptr = 0x3fcef8f4 + 0x000000003fcef8f0 BasicOFDMSched_ptr = 0x3fcef8f0 + 0x000000003fcef8ec trc_ctl_ptr = 0x3fcef8ec + 0x000000003fcef8e8 g_pm_cnt_ptr = 0x3fcef8e8 + 0x000000003fcef8e4 g_pm_ptr = 0x3fcef8e4 + 0x000000003fcef8e0 g_pm_cfg_ptr = 0x3fcef8e0 + 0x000000003fcef8dc g_esp_mesh_quick_funcs_ptr = 0x3fcef8dc + 0x000000003fcef8d8 g_txop_queue_status_ptr = 0x3fcef8d8 + 0x000000003fcef8d4 g_mac_sleep_en_ptr = 0x3fcef8d4 + 0x000000003fcef8d0 g_mesh_is_root_ptr = 0x3fcef8d0 + 0x000000003fcef8cc g_mesh_topology_ptr = 0x3fcef8cc + 0x000000003fcef8c8 g_mesh_init_ps_type_ptr = 0x3fcef8c8 + 0x000000003fcef8c4 g_mesh_is_started_ptr = 0x3fcef8c4 + 0x000000003fcef8c0 g_config_func = 0x3fcef8c0 + 0x000000003fcef8bc g_net80211_tx_func = 0x3fcef8bc + 0x000000003fcef8b8 g_timer_func = 0x3fcef8b8 + 0x000000003fcef8b4 s_michael_mic_failure_cb = 0x3fcef8b4 + 0x000000003fcef8b0 wifi_sta_rx_probe_req = 0x3fcef8b0 + 0x000000003fcef8ac g_tx_done_cb_func = 0x3fcef8ac + 0x000000003fcef860 g_per_conn_trc = 0x3fcef860 + 0x000000003fcef85c s_encap_amsdu_func = 0x3fcef85c + 0x00000000400059b8 esp_net80211_rom_version_get = 0x400059b8 + 0x00000000400059c4 ampdu_dispatch = 0x400059c4 + 0x00000000400059d0 ampdu_dispatch_all = 0x400059d0 + 0x00000000400059dc ampdu_dispatch_as_many_as_possible = 0x400059dc + 0x00000000400059e8 ampdu_dispatch_movement = 0x400059e8 + 0x00000000400059f4 ampdu_dispatch_upto = 0x400059f4 + 0x0000000040005a00 chm_is_at_home_channel = 0x40005a00 + 0x0000000040005a0c cnx_node_is_existing = 0x40005a0c + 0x0000000040005a18 cnx_node_search = 0x40005a18 + 0x0000000040005a24 ic_ebuf_recycle_rx = 0x40005a24 + 0x0000000040005a30 ic_ebuf_recycle_tx = 0x40005a30 + 0x0000000040005a3c ic_reset_rx_ba = 0x40005a3c + 0x0000000040005a48 ieee80211_align_eb = 0x40005a48 + 0x0000000040005a54 ieee80211_ampdu_reorder = 0x40005a54 + 0x0000000040005a60 ieee80211_ampdu_start_age_timer = 0x40005a60 + 0x0000000040005a78 ieee80211_is_tx_allowed = 0x40005a78 + 0x0000000040005a84 ieee80211_output_pending_eb = 0x40005a84 + 0x0000000040005a90 ieee80211_output_process = 0x40005a90 + 0x0000000040005a9c ieee80211_set_tx_desc = 0x40005a9c + 0x0000000040005aa8 sta_input = 0x40005aa8 + 0x0000000040005ab4 wifi_get_macaddr = 0x40005ab4 + 0x0000000040005ac0 wifi_rf_phy_disable = 0x40005ac0 + 0x0000000040005acc wifi_rf_phy_enable = 0x40005acc + 0x0000000040005ad8 ic_ebuf_alloc = 0x40005ad8 + 0x0000000040005ae4 ieee80211_classify = 0x40005ae4 + 0x0000000040005af0 ieee80211_copy_eb_header = 0x40005af0 + 0x0000000040005afc ieee80211_recycle_cache_eb = 0x40005afc + 0x0000000040005b08 ieee80211_search_node = 0x40005b08 + 0x0000000040005b14 roundup2 = 0x40005b14 + 0x0000000040005b20 ieee80211_crypto_encap = 0x40005b20 + 0x0000000040005b2c ieee80211_crypto_decap = 0x40005b2c + 0x0000000040005b44 ieee80211_set_tx_pti = 0x40005b44 + 0x0000000040005b50 wifi_is_started = 0x40005b50 + 0x0000000040005b5c ieee80211_gettid = 0x40005b5c + 0x000000003fcef858 net80211_funcs = 0x3fcef858 + 0x000000003fcef854 g_scan = 0x3fcef854 + 0x000000003fcef850 g_chm = 0x3fcef850 + 0x000000003fcef84c g_ic_ptr = 0x3fcef84c + 0x000000003fcef848 g_hmac_cnt_ptr = 0x3fcef848 + 0x000000003fcef844 g_tx_cacheq_ptr = 0x3fcef844 + 0x000000003fcef840 s_netstack_free = 0x3fcef840 + 0x000000003fcef83c mesh_rxcb = 0x3fcef83c + 0x000000003fcef838 sta_rxcb = 0x3fcef838 + 0x0000000040005b68 esp_coex_rom_version_get = 0x40005b68 + 0x0000000040005b74 coex_bt_release = 0x40005b74 + 0x0000000040005b80 coex_bt_request = 0x40005b80 + 0x0000000040005b8c coex_core_ble_conn_dyn_prio_get = 0x40005b8c + 0x0000000040005b98 coex_core_event_duration_get = 0x40005b98 + 0x0000000040005ba4 coex_core_pti_get = 0x40005ba4 + 0x0000000040005bb0 coex_core_release = 0x40005bb0 + 0x0000000040005bbc coex_core_request = 0x40005bbc + 0x0000000040005bc8 coex_core_status_get = 0x40005bc8 + 0x0000000040005bd4 coex_core_timer_idx_get = 0x40005bd4 + 0x0000000040005be0 coex_event_duration_get = 0x40005be0 + 0x0000000040005bec coex_hw_timer_disable = 0x40005bec + 0x0000000040005bf8 coex_hw_timer_enable = 0x40005bf8 + 0x0000000040005c04 coex_hw_timer_set = 0x40005c04 + 0x0000000040005c10 coex_schm_interval_set = 0x40005c10 + 0x0000000040005c1c coex_schm_lock = 0x40005c1c + 0x0000000040005c28 coex_schm_unlock = 0x40005c28 + 0x0000000040005c34 coex_status_get = 0x40005c34 + 0x0000000040005c40 coex_wifi_release = 0x40005c40 + 0x0000000040005c4c esp_coex_ble_conn_dynamic_prio_get = 0x40005c4c + 0x000000003fcef834 coex_env_ptr = 0x3fcef834 + 0x000000003fcef830 coex_pti_tab_ptr = 0x3fcef830 + 0x000000003fcef82c coex_schm_env_ptr = 0x3fcef82c + 0x000000003fcef828 coexist_funcs = 0x3fcef828 + 0x000000003fcef824 g_coa_funcs_p = 0x3fcef824 + 0x000000003fcef820 g_coex_param_ptr = 0x3fcef820 + 0x0000000040005c58 phy_get_romfuncs = 0x40005c58 + 0x0000000040005c64 rom_abs_temp = 0x40005c64 + 0x0000000040005c70 rom_bb_bss_cbw40_dig = 0x40005c70 + 0x0000000040005c7c rom_bb_wdg_test_en = 0x40005c7c + 0x0000000040005c88 rom_bb_wdt_get_status = 0x40005c88 + 0x0000000040005c94 rom_bb_wdt_int_enable = 0x40005c94 + 0x0000000040005ca0 rom_bb_wdt_rst_enable = 0x40005ca0 + 0x0000000040005cac rom_bb_wdt_timeout_clear = 0x40005cac + 0x0000000040005cb8 rom_cbw2040_cfg = 0x40005cb8 + 0x0000000040005cc4 rom_check_noise_floor = 0x40005cc4 + 0x0000000040005cd0 rom_chip_i2c_readReg = 0x40005cd0 + 0x0000000040005cdc rom_chip_i2c_writeReg = 0x40005cdc + 0x0000000040005ce8 rom_dc_iq_est = 0x40005ce8 + 0x0000000040005cf4 rom_disable_agc = 0x40005cf4 + 0x0000000040005d00 rom_en_pwdet = 0x40005d00 + 0x0000000040005d0c rom_enable_agc = 0x40005d0c + 0x0000000040005d18 rom_get_bbgain_db = 0x40005d18 + 0x0000000040005d24 rom_get_data_sat = 0x40005d24 + 0x0000000040005d30 rom_get_i2c_read_mask = 0x40005d30 + 0x0000000040005d3c rom_get_pwctrl_correct = 0x40005d3c + 0x0000000040005d48 rom_i2c_readReg = 0x40005d48 + 0x0000000040005d54 rom_i2c_readReg_Mask = 0x40005d54 + 0x0000000040005d60 rom_i2c_writeReg = 0x40005d60 + 0x0000000040005d6c rom_i2c_writeReg_Mask = 0x40005d6c + 0x0000000040005d78 rom_index_to_txbbgain = 0x40005d78 + 0x0000000040005d84 rom_iq_est_disable = 0x40005d84 + 0x0000000040005d90 rom_iq_est_enable = 0x40005d90 + 0x0000000040005d9c rom_linear_to_db = 0x40005d9c + 0x0000000040005da8 rom_loopback_mode_en = 0x40005da8 + 0x0000000040005db4 rom_mhz2ieee = 0x40005db4 + 0x0000000040005dc0 rom_noise_floor_auto_set = 0x40005dc0 + 0x0000000040005dcc rom_pbus_debugmode = 0x40005dcc + 0x0000000040005dd8 rom_pbus_force_mode = 0x40005dd8 + 0x0000000040005de4 rom_pbus_force_test = 0x40005de4 + 0x0000000040005df0 rom_pbus_rd = 0x40005df0 + 0x0000000040005dfc rom_pbus_rd_addr = 0x40005dfc + 0x0000000040005e08 rom_pbus_rd_shift = 0x40005e08 + 0x0000000040005e14 rom_pbus_set_dco = 0x40005e14 + 0x0000000040005e20 rom_pbus_set_rxgain = 0x40005e20 + 0x0000000040005e2c rom_pbus_workmode = 0x40005e2c + 0x0000000040005e38 rom_pbus_xpd_rx_off = 0x40005e38 + 0x0000000040005e44 rom_pbus_xpd_rx_on = 0x40005e44 + 0x0000000040005e50 rom_pbus_xpd_tx_off = 0x40005e50 + 0x0000000040005e5c rom_pbus_xpd_tx_on = 0x40005e5c + 0x0000000040005e68 rom_phy_byte_to_word = 0x40005e68 + 0x0000000040005e74 rom_phy_disable_cca = 0x40005e74 + 0x0000000040005e80 rom_phy_enable_cca = 0x40005e80 + 0x0000000040005e8c rom_phy_get_noisefloor = 0x40005e8c + 0x0000000040005e98 rom_phy_get_rx_freq = 0x40005e98 + 0x0000000040005ea4 rom_phy_set_bbfreq_init = 0x40005ea4 + 0x0000000040005eb0 rom_pow_usr = 0x40005eb0 + 0x0000000040005ebc rom_pwdet_sar2_init = 0x40005ebc + 0x0000000040005ec8 rom_read_hw_noisefloor = 0x40005ec8 + 0x0000000040005ed4 rom_read_sar_dout = 0x40005ed4 + 0x0000000040005ee0 rom_set_cal_rxdc = 0x40005ee0 + 0x0000000040005eec rom_set_chan_cal_interp = 0x40005eec + 0x0000000040005ef8 rom_set_loopback_gain = 0x40005ef8 + 0x0000000040005f04 rom_set_noise_floor = 0x40005f04 + 0x0000000040005f10 rom_set_rxclk_en = 0x40005f10 + 0x0000000040005f1c rom_set_tx_dig_gain = 0x40005f1c + 0x0000000040005f28 rom_set_txcap_reg = 0x40005f28 + 0x0000000040005f34 rom_set_txclk_en = 0x40005f34 + 0x0000000040005f40 rom_spur_cal = 0x40005f40 + 0x0000000040005f4c rom_spur_reg_write_one_tone = 0x40005f4c + 0x0000000040005f58 rom_target_power_add_backoff = 0x40005f58 + 0x0000000040005f64 rom_tx_pwctrl_bg_init = 0x40005f64 + 0x0000000040005f70 rom_txbbgain_to_index = 0x40005f70 + 0x0000000040005f7c rom_wifi_11g_rate_chg = 0x40005f7c + 0x0000000040005f88 rom_write_gain_mem = 0x40005f88 + 0x0000000040005f94 chip728_phyrom_version = 0x40005f94 + 0x0000000040005fa0 rom_disable_wifi_agc = 0x40005fa0 + 0x0000000040005fac rom_enable_wifi_agc = 0x40005fac + 0x0000000040005fb8 rom_bt_index_to_bb = 0x40005fb8 + 0x0000000040005fc4 rom_bt_bb_to_index = 0x40005fc4 + 0x0000000040005fd0 rom_spur_coef_cfg = 0x40005fd0 + 0x0000000040005fdc rom_bb_bss_cbw40 = 0x40005fdc + 0x0000000040005fe8 rom_set_cca = 0x40005fe8 + 0x0000000040005ff4 rom_tx_paon_set = 0x40005ff4 + 0x0000000040006000 rom_i2cmst_reg_init = 0x40006000 + 0x000000004000600c rom_iq_corr_enable = 0x4000600c + 0x0000000040006018 rom_fe_reg_init = 0x40006018 + 0x0000000040006024 rom_agc_reg_init = 0x40006024 + 0x0000000040006030 rom_bb_reg_init = 0x40006030 + 0x000000004000603c rom_mac_enable_bb = 0x4000603c + 0x0000000040006048 rom_bb_wdg_cfg = 0x40006048 + 0x0000000040006054 rom_force_txon = 0x40006054 + 0x0000000040006060 rom_fe_txrx_reset = 0x40006060 + 0x000000004000606c rom_set_rx_comp = 0x4000606c + 0x0000000040006078 rom_set_pbus_reg = 0x40006078 + 0x0000000040006084 rom_write_chan_freq = 0x40006084 + 0x0000000040006090 rom_phy_xpd_rf = 0x40006090 + 0x000000004000609c rom_set_xpd_sar = 0x4000609c + 0x00000000400060a8 rom_get_target_power_offset = 0x400060a8 + 0x00000000400060b4 rom_write_txrate_power_offset = 0x400060b4 + 0x00000000400060c0 rom_get_rate_fcc_index = 0x400060c0 + 0x00000000400060cc rom_get_rate_target_power = 0x400060cc + 0x00000000400060d8 rom_pkdet_vol_start = 0x400060d8 + 0x00000000400060e4 rom_read_sar2_code = 0x400060e4 + 0x00000000400060f0 rom_get_sar2_vol = 0x400060f0 + 0x00000000400060fc rom_get_pll_vol = 0x400060fc + 0x0000000040006108 rom_get_phy_target_power = 0x40006108 + 0x0000000040006114 rom_temp_to_power = 0x40006114 + 0x0000000040006120 rom_phy_track_pll_cap = 0x40006120 + 0x000000004000612c rom_phy_pwdet_always_en = 0x4000612c + 0x0000000040006138 rom_phy_pwdet_onetime_en = 0x40006138 + 0x0000000040006144 rom_get_i2c_mst0_mask = 0x40006144 + 0x0000000040006150 rom_get_i2c_hostid = 0x40006150 + 0x000000004000615c rom_enter_critical_phy = 0x4000615c + 0x0000000040006168 rom_exit_critical_phy = 0x40006168 + 0x0000000040006174 rom_chip_i2c_readReg_org = 0x40006174 + 0x0000000040006180 rom_i2c_paral_set_mst0 = 0x40006180 + 0x000000004000618c rom_i2c_paral_set_read = 0x4000618c + 0x0000000040006198 rom_i2c_paral_read = 0x40006198 + 0x00000000400061a4 rom_i2c_paral_write = 0x400061a4 + 0x00000000400061b0 rom_i2c_paral_write_num = 0x400061b0 + 0x00000000400061bc rom_i2c_paral_write_mask = 0x400061bc + 0x00000000400061c8 rom_bb_bss_cbw40_ana = 0x400061c8 + 0x00000000400061d4 rom_chan_to_freq = 0x400061d4 + 0x00000000400061e0 rom_open_i2c_xpd = 0x400061e0 + 0x00000000400061ec rom_dac_rate_set = 0x400061ec + 0x00000000400061f8 rom_tsens_read_init = 0x400061f8 + 0x0000000040006204 rom_tsens_code_read = 0x40006204 + 0x0000000040006210 rom_tsens_index_to_dac = 0x40006210 + 0x000000004000621c rom_tsens_index_to_offset = 0x4000621c + 0x0000000040006228 rom_tsens_dac_cal = 0x40006228 + 0x0000000040006234 rom_code_to_temp = 0x40006234 + 0x0000000040006240 rom_write_pll_cap_mem = 0x40006240 + 0x000000004000624c rom_pll_correct_dcap = 0x4000624c + 0x0000000040006258 rom_phy_en_hw_set_freq = 0x40006258 + 0x0000000040006264 rom_phy_dis_hw_set_freq = 0x40006264 + 0x0000000040006270 rom_pll_vol_cal = 0x40006270 + 0x000000004000627c rom_wrtie_pll_cap = 0x4000627c + 0x0000000040006288 rom_set_tx_gain_mem = 0x40006288 + 0x0000000040006294 rom_bt_tx_dig_gain = 0x40006294 + 0x00000000400062a0 rom_bt_get_tx_gain = 0x400062a0 + 0x00000000400062ac rom_get_chan_target_power = 0x400062ac + 0x00000000400062b8 rom_get_tx_gain_value = 0x400062b8 + 0x00000000400062c4 rom_wifi_tx_dig_gain = 0x400062c4 + 0x00000000400062d0 rom_wifi_get_tx_gain = 0x400062d0 + 0x00000000400062dc rom_fe_i2c_reg_renew = 0x400062dc + 0x00000000400062e8 rom_wifi_agc_sat_gain = 0x400062e8 + 0x00000000400062f4 rom_i2c_master_reset = 0x400062f4 + 0x0000000040006300 rom_bt_filter_reg = 0x40006300 + 0x000000004000630c rom_phy_bbpll_cal = 0x4000630c + 0x0000000040006318 rom_i2c_sar2_init_code = 0x40006318 + 0x0000000040006324 rom_phy_param_addr = 0x40006324 + 0x0000000040006330 rom_phy_reg_init = 0x40006330 + 0x000000004000633c rom_set_chan_reg = 0x4000633c + 0x0000000040006348 rom_phy_wakeup_init = 0x40006348 + 0x0000000040006354 rom_phy_i2c_init1 = 0x40006354 + 0x0000000040006360 rom_tsens_temp_read = 0x40006360 + 0x000000004000636c rom_bt_track_pll_cap = 0x4000636c + 0x0000000040006378 rom_wifi_track_pll_cap = 0x40006378 + 0x0000000040006384 rom_wifi_set_tx_gain = 0x40006384 + 0x0000000040006390 rom_txpwr_cal_track = 0x40006390 + 0x000000004000639c rom_tx_pwctrl_background = 0x4000639c + 0x00000000400063a8 rom_bt_set_tx_gain = 0x400063a8 + 0x00000000400063b4 rom_noise_check_loop = 0x400063b4 + 0x00000000400063c0 rom_phy_close_rf = 0x400063c0 + 0x00000000400063cc rom_phy_xpd_tsens = 0x400063cc + 0x00000000400063d8 rom_phy_freq_mem_backup = 0x400063d8 + 0x00000000400063e4 rom_phy_ant_init = 0x400063e4 + 0x00000000400063f0 rom_bt_track_tx_power = 0x400063f0 + 0x00000000400063fc rom_wifi_track_tx_power = 0x400063fc + 0x0000000040006408 rom_phy_dig_reg_backup = 0x40006408 + 0x0000000040006414 chip728_phyrom_version_num = 0x40006414 + 0x0000000040006420 rom_mac_tx_chan_offset = 0x40006420 + 0x000000004000642c rom_rx_gain_force = 0x4000642c + 0x000000003fcef81c phy_param_rom = 0x3fcef81c + 0x0000000040001c98 PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x0000000040001b0c PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x0000000040001b00 PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) + 0x0000000040001a94 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x0000000040001aa0 PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x0000000040001f74 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + 0x0000000040001fa4 PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + 0x0000000040000648 PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + 0x000000004000069c PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + 0x0000000040000660 PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + 0x00000000400006c0 PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_usb_acm_init = Uart_Init_USB) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + 0x0000000040001c5c PROVIDE (esp_rom_md5_init = MD5Init) + 0x0000000040001c68 PROVIDE (esp_rom_md5_update = MD5Update) + 0x0000000040001c74 PROVIDE (esp_rom_md5_final = MD5Final) + 0x00000000400005d0 PROVIDE (esp_rom_printf = ets_printf) + 0x0000000040000600 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x00000000400005e8 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x000000004000057c PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) + 0x000000004000216c __absvdi2 = 0x4000216c + 0x0000000040002178 __absvsi2 = 0x40002178 + 0x0000000040002184 __adddf3 = 0x40002184 + 0x0000000040002190 __addsf3 = 0x40002190 + 0x000000004000219c __addvdi3 = 0x4000219c + 0x00000000400021a8 __addvsi3 = 0x400021a8 + 0x00000000400021b4 __ashldi3 = 0x400021b4 + 0x00000000400021c0 __ashrdi3 = 0x400021c0 + 0x00000000400021cc __bswapdi2 = 0x400021cc + 0x00000000400021d8 __bswapsi2 = 0x400021d8 + 0x00000000400021e4 __clear_cache = 0x400021e4 + 0x00000000400021f0 __clrsbdi2 = 0x400021f0 + 0x00000000400021fc __clrsbsi2 = 0x400021fc + 0x0000000040002208 __clzdi2 = 0x40002208 + 0x0000000040002214 __clzsi2 = 0x40002214 + 0x0000000040002220 __cmpdi2 = 0x40002220 + 0x000000004000222c __ctzdi2 = 0x4000222c + 0x0000000040002238 __ctzsi2 = 0x40002238 + 0x0000000040002244 __divdc3 = 0x40002244 + 0x0000000040002250 __divdf3 = 0x40002250 + 0x000000004000225c __divdi3 = 0x4000225c + 0x0000000040002268 __divsc3 = 0x40002268 + 0x0000000040002274 __divsf3 = 0x40002274 + 0x0000000040002280 __divsi3 = 0x40002280 + 0x000000004000228c __eqdf2 = 0x4000228c + 0x0000000040002298 __eqsf2 = 0x40002298 + 0x00000000400022a4 __extendsfdf2 = 0x400022a4 + 0x00000000400022b0 __ffsdi2 = 0x400022b0 + 0x00000000400022bc __ffssi2 = 0x400022bc + 0x00000000400022c8 __fixdfdi = 0x400022c8 + 0x00000000400022d4 __fixdfsi = 0x400022d4 + 0x00000000400022e0 __fixsfdi = 0x400022e0 + 0x00000000400022ec __fixsfsi = 0x400022ec + 0x00000000400022f8 __fixunsdfsi = 0x400022f8 + 0x0000000040002304 __fixunssfdi = 0x40002304 + 0x0000000040002310 __fixunssfsi = 0x40002310 + 0x000000004000231c __floatdidf = 0x4000231c + 0x0000000040002328 __floatdisf = 0x40002328 + 0x0000000040002334 __floatsidf = 0x40002334 + 0x0000000040002340 __floatsisf = 0x40002340 + 0x000000004000234c __floatundidf = 0x4000234c + 0x0000000040002358 __floatundisf = 0x40002358 + 0x0000000040002364 __floatunsidf = 0x40002364 + 0x0000000040002370 __floatunsisf = 0x40002370 + 0x000000004000237c __gcc_bcmp = 0x4000237c + 0x0000000040002388 __gedf2 = 0x40002388 + 0x0000000040002394 __gesf2 = 0x40002394 + 0x00000000400023a0 __gtdf2 = 0x400023a0 + 0x00000000400023ac __gtsf2 = 0x400023ac + 0x00000000400023b8 __ledf2 = 0x400023b8 + 0x00000000400023c4 __lesf2 = 0x400023c4 + 0x00000000400023d0 __lshrdi3 = 0x400023d0 + 0x00000000400023dc __ltdf2 = 0x400023dc + 0x00000000400023e8 __ltsf2 = 0x400023e8 + 0x00000000400023f4 __moddi3 = 0x400023f4 + 0x0000000040002400 __modsi3 = 0x40002400 + 0x000000004000240c __muldc3 = 0x4000240c + 0x0000000040002418 __muldf3 = 0x40002418 + 0x0000000040002424 __muldi3 = 0x40002424 + 0x0000000040002430 __mulsc3 = 0x40002430 + 0x000000004000243c __mulsf3 = 0x4000243c + 0x0000000040002448 __mulsi3 = 0x40002448 + 0x0000000040002454 __mulvdi3 = 0x40002454 + 0x0000000040002460 __mulvsi3 = 0x40002460 + 0x000000004000246c __nedf2 = 0x4000246c + 0x0000000040002478 __negdf2 = 0x40002478 + 0x0000000040002484 __negdi2 = 0x40002484 + 0x0000000040002490 __negsf2 = 0x40002490 + 0x000000004000249c __negvdi2 = 0x4000249c + 0x00000000400024a8 __negvsi2 = 0x400024a8 + 0x00000000400024b4 __nesf2 = 0x400024b4 + 0x00000000400024c0 __paritysi2 = 0x400024c0 + 0x00000000400024cc __popcountdi2 = 0x400024cc + 0x00000000400024d8 __popcountsi2 = 0x400024d8 + 0x00000000400024e4 __powidf2 = 0x400024e4 + 0x00000000400024f0 __powisf2 = 0x400024f0 + 0x00000000400024fc __subdf3 = 0x400024fc + 0x0000000040002508 __subsf3 = 0x40002508 + 0x0000000040002514 __subvdi3 = 0x40002514 + 0x0000000040002520 __subvsi3 = 0x40002520 + 0x000000004000252c __truncdfsf2 = 0x4000252c + 0x0000000040002538 __ucmpdi2 = 0x40002538 + 0x0000000040002544 __udivdi3 = 0x40002544 + 0x0000000040002550 __udivmoddi4 = 0x40002550 + 0x000000004000255c __udivsi3 = 0x4000255c + 0x0000000040002568 __udiv_w_sdiv = 0x40002568 + 0x0000000040002574 __umoddi3 = 0x40002574 + 0x0000000040002580 __umodsi3 = 0x40002580 + 0x000000004000258c __unorddf2 = 0x4000258c + 0x0000000040002598 __unordsf2 = 0x40002598 + 0x00000000400011dc esp_rom_newlib_init_common_mutexes = 0x400011dc + 0x00000000400011e8 memset = 0x400011e8 + 0x00000000400011f4 memcpy = 0x400011f4 + 0x0000000040001200 memmove = 0x40001200 + 0x000000004000120c memcmp = 0x4000120c + 0x0000000040001218 strcpy = 0x40001218 + 0x0000000040001224 strncpy = 0x40001224 + 0x0000000040001230 strcmp = 0x40001230 + 0x000000004000123c strncmp = 0x4000123c + 0x0000000040001248 strlen = 0x40001248 + 0x0000000040001254 strstr = 0x40001254 + 0x0000000040001260 bzero = 0x40001260 + 0x000000004000126c _isatty_r = 0x4000126c + 0x0000000040001278 sbrk = 0x40001278 + 0x0000000040001284 isalnum = 0x40001284 + 0x0000000040001290 isalpha = 0x40001290 + 0x000000004000129c isascii = 0x4000129c + 0x00000000400012a8 isblank = 0x400012a8 + 0x00000000400012b4 iscntrl = 0x400012b4 + 0x00000000400012c0 isdigit = 0x400012c0 + 0x00000000400012cc islower = 0x400012cc + 0x00000000400012d8 isgraph = 0x400012d8 + 0x00000000400012e4 isprint = 0x400012e4 + 0x00000000400012f0 ispunct = 0x400012f0 + 0x00000000400012fc isspace = 0x400012fc + 0x0000000040001308 isupper = 0x40001308 + 0x0000000040001314 toupper = 0x40001314 + 0x0000000040001320 tolower = 0x40001320 + 0x000000004000132c toascii = 0x4000132c + 0x0000000040001338 memccpy = 0x40001338 + 0x0000000040001344 memchr = 0x40001344 + 0x0000000040001350 memrchr = 0x40001350 + 0x000000004000135c strcasecmp = 0x4000135c + 0x0000000040001368 strcasestr = 0x40001368 + 0x0000000040001374 strcat = 0x40001374 + 0x0000000040001380 strdup = 0x40001380 + 0x000000004000138c strchr = 0x4000138c + 0x0000000040001398 strcspn = 0x40001398 + 0x00000000400013a4 strcoll = 0x400013a4 + 0x00000000400013b0 strlcat = 0x400013b0 + 0x00000000400013bc strlcpy = 0x400013bc + 0x00000000400013c8 strlwr = 0x400013c8 + 0x00000000400013d4 strncasecmp = 0x400013d4 + 0x00000000400013e0 strncat = 0x400013e0 + 0x00000000400013ec strndup = 0x400013ec + 0x00000000400013f8 strnlen = 0x400013f8 + 0x0000000040001404 strrchr = 0x40001404 + 0x0000000040001410 strsep = 0x40001410 + 0x000000004000141c strspn = 0x4000141c + 0x0000000040001428 strtok_r = 0x40001428 + 0x0000000040001434 strupr = 0x40001434 + 0x0000000040001440 longjmp = 0x40001440 + 0x000000004000144c setjmp = 0x4000144c + 0x0000000040001458 abs = 0x40001458 + 0x0000000040001464 div = 0x40001464 + 0x0000000040001470 labs = 0x40001470 + 0x000000004000147c ldiv = 0x4000147c + 0x0000000040001488 qsort = 0x40001488 + 0x0000000040001494 rand_r = 0x40001494 + 0x00000000400014a0 rand = 0x400014a0 + 0x00000000400014ac srand = 0x400014ac + 0x00000000400014b8 utoa = 0x400014b8 + 0x00000000400014c4 itoa = 0x400014c4 + 0x00000000400014d0 atoi = 0x400014d0 + 0x00000000400014dc atol = 0x400014dc + 0x00000000400014e8 strtol = 0x400014e8 + 0x00000000400014f4 strtoul = 0x400014f4 + [!provide] PROVIDE (fflush = 0x40001500) + [!provide] PROVIDE (_fflush_r = 0x4000150c) + [!provide] PROVIDE (_fwalk = 0x40001518) + [!provide] PROVIDE (_fwalk_reent = 0x40001524) + [!provide] PROVIDE (__smakebuf_r = 0x40001530) + [!provide] PROVIDE (__swhatbuf_r = 0x4000153c) + [!provide] PROVIDE (__swbuf_r = 0x40001548) + 0x0000000040001554 __swbuf = 0x40001554 + [!provide] PROVIDE (__swsetup_r = 0x40001560) + 0x000000003fceffd4 syscall_table_ptr = 0x3fceffd4 + 0x000000003fceffd0 _global_impure_ptr = 0x3fceffd0 + 0x0000000040000570 _rom_chip_id = 0x40000570 + 0x0000000040000574 _rom_eco_version = 0x40000574 + 0x0000000060000000 PROVIDE (UART0 = 0x60000000) + 0x0000000060002000 PROVIDE (SPIMEM1 = 0x60002000) + [!provide] PROVIDE (SPIMEM0 = 0x60003000) + 0x0000000060004000 PROVIDE (GPIO = 0x60004000) + [!provide] PROVIDE (SIGMADELTA = 0x60004f00) + 0x0000000060008000 PROVIDE (RTCCNTL = 0x60008000) + 0x0000000060008400 PROVIDE (RTCIO = 0x60008400) + [!provide] PROVIDE (SENS = 0x60008800) + [!provide] PROVIDE (HINF = 0x6000b000) + [!provide] PROVIDE (I2S0 = 0x6000f000) + [!provide] PROVIDE (I2S1 = 0x6002d000) + 0x0000000060010000 PROVIDE (UART1 = 0x60010000) + [!provide] PROVIDE (I2C0 = 0x60013000) + [!provide] PROVIDE (UHCI0 = 0x60014000) + [!provide] PROVIDE (UHCI1 = 0x60014000) + [!provide] PROVIDE (HOST = 0x60015000) + [!provide] PROVIDE (RMT = 0x60016000) + [!provide] PROVIDE (RMTMEM = 0x60016800) + [!provide] PROVIDE (PCNT = 0x60017000) + [!provide] PROVIDE (SLC = 0x60018000) + [!provide] PROVIDE (LEDC = 0x60019000) + [!provide] PROVIDE (MCPWM0 = 0x6001e000) + [!provide] PROVIDE (MCPWM1 = 0x6002c000) + [!provide] PROVIDE (MCP = 0x600c3000) + 0x000000006001f000 PROVIDE (TIMERG0 = 0x6001f000) + 0x0000000060020000 PROVIDE (TIMERG1 = 0x60020000) + 0x0000000060023000 PROVIDE (SYSTIMER = 0x60023000) + 0x0000000060024000 PROVIDE (GPSPI2 = 0x60024000) + 0x0000000060025000 PROVIDE (GPSPI3 = 0x60025000) + [!provide] PROVIDE (SYSCON = 0x60026000) + [!provide] PROVIDE (I2C1 = 0x60027000) + [!provide] PROVIDE (SDMMC = 0x60028000) + [!provide] PROVIDE (TWAI = 0x6002b000) + [!provide] PROVIDE (GPSPI4 = 0x60037000) + 0x000000006003f000 PROVIDE (GDMA = 0x6003f000) + 0x000000006002e000 PROVIDE (UART2 = 0x6002e000) + [!provide] PROVIDE (DMA = 0x6003f000) + [!provide] PROVIDE (APB_SARADC = 0x60040000) + [!provide] PROVIDE (LCD_CAM = 0x60041000) + [!provide] PROVIDE (USB_SERIAL_JTAG = 0x60038000) + [!provide] PROVIDE (USB0 = 0x60080000) + [!provide] PROVIDE (USBH = 0x60080000) + [!provide] PROVIDE (USB_WRAP = 0x60039000) +OUTPUT(hello-world.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/hello-world.elf.dir/project_elf_src_esp32s3.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.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/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(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_system/libesp_system.a(panic.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(wdt_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(cpu_hal.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(soc_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_uart.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(heap_tlsf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.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(regi2c_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/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_systimer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port_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(queue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(abort.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/main/libmain.a(hello_world_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(uart.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(rtc_module.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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(partition.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(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(task_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(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/hal/libhal.a(interrupt_controller_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(uart_periph.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_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(gdma.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.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(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(gdma_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gdma_periph.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(sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0x25 + .comment 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o + 0x26 (size before relaxing) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(soc_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/main/libmain.a(hello_world_main.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000000000000025 0x26 /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + .comment 0x0000000000000025 0x26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + +.debug_frame 0x0000000000000000 0x86d8 + .debug_frame 0x0000000000000000 0x58 esp-idf/app_update/libapp_update.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 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x0000000000000718 0x88 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000000000007a0 0x70 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x0000000000000810 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x0000000000000850 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x00000000000008a8 0xe8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x0000000000000990 0xe8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x0000000000000a78 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x0000000000000b48 0x40 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x0000000000000b88 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x0000000000000bb0 0xe8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x0000000000000c98 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x0000000000000d20 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x0000000000000e20 0x100 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x0000000000000f20 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_frame 0x0000000000000f48 0x118 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_frame 0x0000000000001060 0x88 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_frame 0x00000000000010e8 0x88 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x0000000000001170 0x40 esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_frame 0x00000000000011b0 0x58 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x0000000000001208 0x4f0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x00000000000016f8 0x2e0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x00000000000019d8 0xb8 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x0000000000001a90 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x0000000000001b30 0x2e0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x0000000000001e10 0x88 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x0000000000001e98 0x238 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x00000000000020d0 0x238 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_frame 0x0000000000002308 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x0000000000002390 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_frame 0x0000000000002448 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x0000000000002518 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x0000000000002768 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x00000000000027d8 0x328 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x0000000000002b00 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x0000000000002b58 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x0000000000002bf8 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x0000000000002cf8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x0000000000002d20 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x0000000000002d90 0x1f0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x0000000000002f80 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x0000000000002fd8 0x148 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_frame 0x0000000000003120 0x1c0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00000000000032e0 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x0000000000003320 0x58 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x0000000000003378 0x3d0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x0000000000003748 0x760 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x0000000000003ea8 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x0000000000003f30 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x0000000000003f58 0x178 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x00000000000040d0 0x250 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x0000000000004320 0x88 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x00000000000043a8 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x00000000000043e8 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x0000000000004428 0xa0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x00000000000044c8 0x148 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x0000000000004610 0xb8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x00000000000046c8 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x0000000000004780 0x28 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_frame 0x00000000000047a8 0x88 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_frame 0x0000000000004830 0x100 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_frame 0x0000000000004930 0xe8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_frame 0x0000000000004a18 0x670 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x0000000000005088 0x1c0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_frame 0x0000000000005248 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000000000005270 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_frame 0x00000000000052f8 0x118 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x0000000000005410 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000000000005528 0x178 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x00000000000056a0 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x00000000000057e8 0x118 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000005900 0x340 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000005c40 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000005cc8 0x1a8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000005e70 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000005ef8 0x1f0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_frame 0x00000000000060e8 0x2e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00000000000063c8 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x0000000000006438 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x0000000000006490 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x0000000000006500 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00000000000065e8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_frame 0x0000000000006628 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x0000000000006758 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x00000000000067b0 0xa0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000000000006850 0x118 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x0000000000006968 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x0000000000006990 0x2b0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x0000000000006c40 0x58 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x0000000000006c98 0x1c0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000000000006e58 0xa0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x0000000000006ef8 0x58 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_frame 0x0000000000006f50 0xd0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_frame 0x0000000000007020 0x160 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_frame 0x0000000000007180 0x28 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .debug_frame 0x00000000000071a8 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x00000000000071e8 0x400 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x00000000000075e8 0x1d8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_frame 0x00000000000077c0 0x2b0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x0000000000007a70 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x0000000000007a98 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_frame 0x0000000000007ac0 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x0000000000007ae8 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x0000000000007b10 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .debug_frame 0x0000000000007b50 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_frame 0x0000000000007b78 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_frame 0x0000000000007bd0 0x160 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_frame 0x0000000000007d30 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .debug_frame 0x0000000000007d70 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_frame 0x0000000000007db0 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_frame 0x0000000000007df0 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_frame 0x0000000000007e30 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_frame 0x0000000000007e70 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_frame 0x0000000000007e98 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_frame 0x0000000000007ed8 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_frame 0x0000000000007f18 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_frame 0x0000000000007f58 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_frame 0x0000000000007f98 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_frame 0x0000000000007fd8 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_frame 0x0000000000008018 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_frame 0x0000000000008058 0x88 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_frame 0x00000000000080e0 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_frame 0x0000000000008120 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_frame 0x0000000000008148 0x88 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_frame 0x00000000000081d0 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_frame 0x0000000000008240 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_frame 0x0000000000008280 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_frame 0x00000000000082a8 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_frame 0x00000000000082e8 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_frame 0x0000000000008328 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_frame 0x0000000000008350 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_frame 0x00000000000083a8 0x1d8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_frame 0x0000000000008580 0x28 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_frame 0x00000000000085a8 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_frame 0x0000000000008600 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_frame 0x0000000000008658 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x0000000000008698 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_info 0x0000000000000000 0x1751f9 + .debug_info 0x0000000000000000 0x13ee esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_info 0x00000000000013ee 0x326b esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x0000000000004659 0x1b3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0000000000006196 0x1d4e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x0000000000007ee4 0xa49b esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x000000000001237f 0x26 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x00000000000123a5 0x930e esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x000000000001b6b3 0x14a9 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x000000000001cb5c 0x6216 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x0000000000022d72 0x1533 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x00000000000242a5 0xd6f8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x000000000003199d 0x6566 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x0000000000037f03 0x7b7a esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x000000000003fa7d 0x8d36 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x00000000000487b3 0x1c36 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x000000000004a3e9 0x1a16 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x000000000004bdff 0x26 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x000000000004be25 0x193c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x000000000004d761 0x85fe esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x0000000000055d5f 0x23b2 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_info 0x0000000000058111 0x6570 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_info 0x000000000005e681 0x152d esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_info 0x000000000005fbae 0x2733 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x00000000000622e1 0x12af esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_info 0x0000000000063590 0x457a esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x0000000000067b0a 0x60be esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x000000000006dbc8 0x5a25 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x00000000000735ed 0x1343 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x0000000000074930 0x1878 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x00000000000761a8 0x2cac esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0000000000078e54 0x1cac esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x000000000007ab00 0x25ab esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x000000000007d0ab 0x7364 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_info 0x000000000008440f 0x11a0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00000000000855af 0xb49 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x00000000000860f8 0x7de9 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_info 0x000000000008dee1 0xdc8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x000000000008eca9 0x338b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x0000000000092034 0x160d esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x0000000000093641 0x1a71 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x00000000000950b2 0x1289 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x000000000009633b 0xdde esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x0000000000097119 0xda1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x0000000000097eba 0xa1b esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x00000000000988d5 0x1710 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x0000000000099fe5 0x26 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x000000000009a00b 0x2486 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x000000000009c491 0x135a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x000000000009d7eb 0x297c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_info 0x00000000000a0167 0x2752 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x00000000000a28b9 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x00000000000a28df 0x26 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_info 0x00000000000a2905 0x22 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_info 0x00000000000a2927 0x16c1 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x00000000000a3fe8 0x2602 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x00000000000a65ea 0x49fe esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x00000000000aafe8 0x8ef6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x00000000000b3ede 0x129b esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_info 0x00000000000b5179 0x26 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_info 0x00000000000b519f 0x14e9 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x00000000000b6688 0x1338 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x00000000000b79c0 0xe0b esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x00000000000b87cb 0x2157 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x00000000000ba922 0xc8a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x00000000000bb5ac 0xb21 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x00000000000bc0cd 0x1295 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x00000000000bd362 0xd05 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x00000000000be067 0x1b77 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x00000000000bfbde 0xdf8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x00000000000c09d6 0x26c2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x00000000000c3098 0x15df esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_info 0x00000000000c4677 0x1a12 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_info 0x00000000000c6089 0x2095 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_info 0x00000000000c811e 0x26 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x00000000000c8144 0x1cf1 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_info 0x00000000000c9e35 0xa65e esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x00000000000d4493 0x4a52 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_info 0x00000000000d8ee5 0x1177 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00000000000da05c 0xd12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_info 0x00000000000dad6e 0x134c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000000dc0ba 0x3e99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00000000000dff53 0x246e esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x00000000000e23c1 0x22ca esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00000000000e468b 0x217f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00000000000e680a 0x815b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x00000000000ee965 0x7377 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00000000000f5cdc 0x6884 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00000000000fc560 0x12b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00000000000fd814 0x2bd4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_info 0x00000000001003e8 0x14ef esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00000000001018d7 0x2c82 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0000000000104559 0x167b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0000000000105bd4 0x1649 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x000000000010721d 0x171e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x000000000010893b 0x1ba1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000000000010a4dc 0x158c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_info 0x000000000010ba68 0x5b63 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00000000001115cb 0xcc8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x0000000000112293 0x199b esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x0000000000113c2e 0x6fa7 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x000000000011abd5 0x26 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x000000000011abfb 0xb1a esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x000000000011b715 0x3a80 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x000000000011f195 0x57cd esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x0000000000124962 0x6dda esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x000000000012b73c 0xd28 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x000000000012c464 0x12f8 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_info 0x000000000012d75c 0x635d esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_info 0x0000000000133ab9 0x228d esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_info 0x0000000000135d46 0x1231 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .debug_info 0x0000000000136f77 0x3a82 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000000000013a9f9 0x4ad2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x000000000013f4cb 0x75af esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_info 0x0000000000146a7a 0x35ae esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x000000000014a028 0x114a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x000000000014b172 0x11ab /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_info 0x000000000014c31d 0x10fc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x000000000014d419 0x1174 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x000000000014e58d 0xa3d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .debug_info 0x000000000014efca 0x43 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_info 0x000000000014f00d 0x976 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_info 0x000000000014f983 0xe62 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_info 0x00000000001507e5 0x1281 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_info 0x0000000000151a66 0xa92 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .debug_info 0x00000000001524f8 0xe1b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_info 0x0000000000153313 0xce8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_info 0x0000000000153ffb 0x11b7 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_info 0x00000000001551b2 0xd03 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_info 0x0000000000155eb5 0xf30 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_info 0x0000000000156de5 0xcd4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_info 0x0000000000157ab9 0xf53 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_info 0x0000000000158a0c 0xcd2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_info 0x00000000001596de 0xdcf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_info 0x000000000015a4ad 0xb1d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_info 0x000000000015afca 0xd26 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_info 0x000000000015bcf0 0xd50 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_info 0x000000000015ca40 0xe37 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_info 0x000000000015d877 0x2c06 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_info 0x000000000016047d 0xa0e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_info 0x0000000000160e8b 0x26d0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_info 0x000000000016355b 0x2ee4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_info 0x000000000016643f 0xca6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_info 0x00000000001670e5 0xc50 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_info 0x0000000000167d35 0x1a6f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_info 0x00000000001697a4 0xd7e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_info 0x000000000016a522 0x9fc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_info 0x000000000016af1e 0x1010 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_info 0x000000000016bf2e 0x232b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_info 0x000000000016e259 0xa90 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_info 0x000000000016ece9 0x24be /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_info 0x00000000001711a7 0xe99 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_info 0x0000000000172040 0x1126 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_info 0x0000000000173166 0x1065 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_info 0x00000000001741cb 0x102e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_abbrev 0x0000000000000000 0x1de2b + .debug_abbrev 0x0000000000000000 0x31c esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_abbrev 0x000000000000031c 0x53a esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x0000000000000856 0x35b esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x0000000000000bb1 0x345 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x0000000000000ef6 0x4d3 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00000000000013c9 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x00000000000013dd 0x41a esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x00000000000017f7 0x26c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x0000000000001a63 0x35f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x0000000000001dc2 0x2bf esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x0000000000002081 0x449 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x00000000000024ca 0x414 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x00000000000028de 0x299 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x0000000000002b77 0x360 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x0000000000002ed7 0x34d esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x0000000000003224 0x313 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x0000000000003537 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x000000000000354b 0x335 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x0000000000003880 0x4c1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x0000000000003d41 0x28e esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_abbrev 0x0000000000003fcf 0x39c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x000000000000436b 0x2f9 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_abbrev 0x0000000000004664 0x385 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00000000000049e9 0x222 esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_abbrev 0x0000000000004c0b 0x2bf esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x0000000000004eca 0x563 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x000000000000542d 0x5ca esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x00000000000059f7 0x486 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x0000000000005e7d 0x32c esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x00000000000061a9 0x4ed esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x0000000000006696 0x3b6 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000000000006a4c 0x43a esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000000000006e86 0x4f0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_abbrev 0x0000000000007376 0x30b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000000000007681 0x198 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x0000000000007819 0x3e0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_abbrev 0x0000000000007bf9 0x2e1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x0000000000007eda 0x562 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x000000000000843c 0x248 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000000000008684 0x47a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x0000000000008afe 0x2fa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000000000008df8 0x2c9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000000090c1 0x29a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x000000000000935b 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x000000000000951b 0x2d1 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x00000000000097ec 0x14 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x0000000000009800 0x4ba esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x0000000000009cba 0x257 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x0000000000009f11 0x3df esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_abbrev 0x000000000000a2f0 0x525 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x000000000000a815 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x000000000000a829 0x14 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_abbrev 0x000000000000a83d 0x12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_abbrev 0x000000000000a84f 0x291 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x000000000000aae0 0x420 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x000000000000af00 0x40e esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x000000000000b30e 0x4d9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x000000000000b7e7 0x18b esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_abbrev 0x000000000000b972 0x14 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_abbrev 0x000000000000b986 0x210 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x000000000000bb96 0x289 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x000000000000be1f 0x28d esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x000000000000c0ac 0x3d5 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x000000000000c481 0x296 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x000000000000c717 0x249 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x000000000000c960 0x252 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x000000000000cbb2 0x2dd esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x000000000000ce8f 0x3b8 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x000000000000d247 0x285 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x000000000000d4cc 0x5ce esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x000000000000da9a 0x259 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_abbrev 0x000000000000dcf3 0x354 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_abbrev 0x000000000000e047 0x3f5 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x000000000000e43c 0x14 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x000000000000e450 0x338 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_abbrev 0x000000000000e788 0x5b6 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x000000000000ed3e 0x5bb esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_abbrev 0x000000000000f2f9 0x1c7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000000000000f4c0 0x286 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_abbrev 0x000000000000f746 0x302 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x000000000000fa48 0x4a3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x000000000000feeb 0x464 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x000000000001034f 0x424 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x0000000000010773 0x3ed esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x0000000000010b60 0x593 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x00000000000110f3 0x443 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x0000000000011536 0x4b1 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x00000000000119e7 0x2d8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x0000000000011cbf 0x468 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_abbrev 0x0000000000012127 0x1e7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000000000001230e 0x4ac esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x00000000000127ba 0x2b3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0000000000012a6d 0x289 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0000000000012cf6 0x2c7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x0000000000012fbd 0x337 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x00000000000132f4 0x262 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_abbrev 0x0000000000013556 0x3aa esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x0000000000013900 0x266 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x0000000000013b66 0x308 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x0000000000013e6e 0x4b9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x0000000000014327 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x000000000001433b 0x269 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x00000000000145a4 0x44a esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x00000000000149ee 0x3a1 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0000000000014d8f 0x500 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x000000000001528f 0x2fd esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x000000000001558c 0x1fc esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_abbrev 0x0000000000015788 0x494 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_abbrev 0x0000000000015c1c 0x3cd esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_abbrev 0x0000000000015fe9 0x1c5 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .debug_abbrev 0x00000000000161ae 0x33f esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x00000000000164ed 0x3d8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x00000000000168c5 0x54a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_abbrev 0x0000000000016e0f 0x4ba esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x00000000000172c9 0x28e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x0000000000017557 0x29b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000000177f2 0x27a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x0000000000017a6c 0x294 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x0000000000017d00 0x210 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .debug_abbrev 0x0000000000017f10 0x37 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_abbrev 0x0000000000017f47 0x1b8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_abbrev 0x00000000000180ff 0x2f1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_abbrev 0x00000000000183f0 0x3c8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_abbrev 0x00000000000187b8 0x224 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .debug_abbrev 0x00000000000189dc 0x2bf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_abbrev 0x0000000000018c9b 0x28d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_abbrev 0x0000000000018f28 0x2eb /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_abbrev 0x0000000000019213 0x27e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_abbrev 0x0000000000019491 0x26f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0000000000019700 0x20d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_abbrev 0x000000000001990d 0x310 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_abbrev 0x0000000000019c1d 0x2a1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_abbrev 0x0000000000019ebe 0x2a4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_abbrev 0x000000000001a162 0x24f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_abbrev 0x000000000001a3b1 0x264 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_abbrev 0x000000000001a615 0x2a0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_abbrev 0x000000000001a8b5 0x24f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_abbrev 0x000000000001ab04 0x46b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x000000000001af6f 0x202 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x000000000001b171 0x482 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_abbrev 0x000000000001b5f3 0x4c1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x000000000001bab4 0x28b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_abbrev 0x000000000001bd3f 0x247 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_abbrev 0x000000000001bf86 0x33b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_abbrev 0x000000000001c2c1 0x2a4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_abbrev 0x000000000001c565 0x1f8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_abbrev 0x000000000001c75d 0x293 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_abbrev 0x000000000001c9f0 0x472 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_abbrev 0x000000000001ce62 0x262 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x000000000001d0c4 0x408 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_abbrev 0x000000000001d4cc 0x181 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_abbrev 0x000000000001d64d 0x310 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_abbrev 0x000000000001d95d 0x273 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x000000000001dbd0 0x25b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_loc 0x0000000000000000 0x47a78 + .debug_loc 0x0000000000000000 0x196 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_loc 0x0000000000000196 0x1203 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x0000000000001399 0x4a9 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0000000000001842 0x48 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x000000000000188a 0xf2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x000000000000197c 0x1c8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x0000000000001b44 0x2a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x0000000000001b6e 0x3f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x0000000000001bad 0x122 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x0000000000001ccf 0xe5 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x0000000000001db4 0x204 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x0000000000001fb8 0xe7 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x000000000000209f 0x274 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x0000000000002313 0x50b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x000000000000281e 0x35f esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x0000000000002b7d 0x1cd esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x0000000000002d4a 0xfb1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_loc 0x0000000000003cfb 0x243 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_loc 0x0000000000003f3e 0x1f5 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x0000000000004133 0x94 esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_loc 0x00000000000041c7 0x4a esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x0000000000004211 0x40da esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x00000000000082eb 0x1075 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x0000000000009360 0x4be esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x000000000000981e 0xcf esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x00000000000098ed 0xda6 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x000000000000a693 0x799 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x000000000000ae2c 0x8df esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x000000000000b70b 0x7928 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_loc 0x0000000000013033 0x355 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x0000000000013388 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_loc 0x000000000001343a 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x00000000000134b0 0x17b0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0000000000014c60 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x0000000000014cd4 0x7e4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x00000000000154b8 0x282 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x000000000001573a 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00000000000157d3 0x2eb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0000000000015abe 0x248 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x0000000000015d06 0xa86 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x000000000001678c 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x00000000000167a1 0x29c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_loc 0x0000000000016a3d 0x7c3 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0000000000017200 0xad esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x00000000000172ad 0x237 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x00000000000174e4 0x18f7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x0000000000018ddb 0x3ba8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x000000000001c983 0xd0 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x000000000001ca53 0x8a esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x000000000001cadd 0x1c1 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x000000000001cc9e 0x439 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x000000000001d0d7 0x94 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x000000000001d16b 0x162 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x000000000001d2cd 0x192 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x000000000001d45f 0x557 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x000000000001d9b6 0x94 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x000000000001da4a 0x2ae esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x000000000001dcf8 0x23 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_loc 0x000000000001dd1b 0x1d1 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_loc 0x000000000001deec 0x30b esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_loc 0x000000000001e1f7 0x1b3f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_loc 0x000000000001fd36 0x2fc8 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x0000000000022cfe 0x733 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_loc 0x0000000000023431 0x5d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_loc 0x000000000002348e 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x0000000000023666 0x4f1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0000000000023b57 0x40c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x0000000000023f63 0xc58 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x0000000000024bbb 0x18b esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x0000000000024d46 0x1680 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x00000000000263c6 0x37f esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000000000026745 0x5e8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0000000000026d2d 0x103 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0000000000026e30 0xdf7 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_loc 0x0000000000027c27 0x1113 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0000000000028d3a 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x0000000000028eb6 0x94 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x0000000000028f4a 0x1e2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x000000000002912c 0x6c9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x00000000000297f5 0x11d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_loc 0x0000000000029912 0x326 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x0000000000029c38 0x25 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0000000000029c5d 0x15a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0000000000029db7 0x3c4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x000000000002a17b 0x11f esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x000000000002a29a 0xf9f esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x000000000002b239 0x3a1 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x000000000002b5da 0x1191 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x000000000002c76b 0x179 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x000000000002c8e4 0xd3 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_loc 0x000000000002c9b7 0xc3a esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_loc 0x000000000002d5f1 0xe56 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_loc 0x000000000002e447 0xc7 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x000000000002e50e 0x1d92 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x00000000000302a0 0x1b30 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_loc 0x0000000000031dd0 0x132e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x00000000000330fe 0xb09 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_loc 0x0000000000033c07 0x7f3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_loc 0x00000000000343fa 0xa8a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_loc 0x0000000000034e84 0x974 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_loc 0x00000000000357f8 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .debug_loc 0x000000000003581d 0x28f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_loc 0x0000000000035aac 0x18d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_loc 0x0000000000035c39 0x74 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .debug_loc 0x0000000000035cad 0xea /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_loc 0x0000000000035d97 0x9e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_loc 0x0000000000035e35 0x394 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_loc 0x00000000000361c9 0xfa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_loc 0x00000000000362c3 0x5bc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_loc 0x000000000003687f 0x11b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_loc 0x000000000003699a 0x1fd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_loc 0x0000000000036b97 0x89 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_loc 0x0000000000036c20 0xfe /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_loc 0x0000000000036d1e 0x44 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_loc 0x0000000000036d62 0x135 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_loc 0x0000000000036e97 0x147 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_loc 0x0000000000036fde 0x14c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_loc 0x000000000003712a 0x403f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_loc 0x000000000003b169 0x25 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_loc 0x000000000003b18e 0x25d9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_loc 0x000000000003d767 0x4144 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_loc 0x00000000000418ab 0x5f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_loc 0x000000000004190a 0x5c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_loc 0x0000000000041966 0x1a54 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_loc 0x00000000000433ba 0xfa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_loc 0x00000000000434b4 0x10c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_loc 0x00000000000435c0 0x6f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_loc 0x000000000004362f 0x1933 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_loc 0x0000000000044f62 0xe2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_loc 0x0000000000045044 0x2817 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_loc 0x000000000004785b 0x8c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_loc 0x00000000000478e7 0xea /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_loc 0x00000000000479d1 0xa7 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_aranges 0x0000000000000000 0x36e8 + .debug_aranges + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.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 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x00000000000002a8 0x40 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000000000002e8 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x0000000000000308 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x0000000000000340 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x0000000000000368 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x0000000000000398 0x60 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000000000003f8 0x60 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x0000000000000458 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000000000004b0 0x28 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x00000000000004d8 0x20 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x00000000000004f8 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x0000000000000558 0x40 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x0000000000000598 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000000000005b8 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x0000000000000620 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x0000000000000688 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_aranges + 0x00000000000006a8 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x0000000000000718 0x40 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_aranges + 0x0000000000000758 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x0000000000000798 0x28 esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_aranges + 0x00000000000007c0 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00000000000007f0 0x1b8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00000000000009a8 0x108 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x0000000000000ab0 0x50 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x0000000000000b00 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x0000000000000b48 0x108 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x0000000000000c50 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x0000000000000c90 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x0000000000000d60 0xd0 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_aranges + 0x0000000000000e30 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x0000000000000e70 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x0000000000000e88 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_aranges + 0x0000000000000ed8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x0000000000000f30 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x0000000000001008 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x0000000000001040 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x0000000000001160 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x0000000000001190 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000000011d8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x0000000000001240 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x0000000000001260 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x0000000000001298 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x00000000000012b8 0xb8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x0000000000001370 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00000000000013a0 0x80 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_aranges + 0x0000000000001420 0xa8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00000000000014c8 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00000000000014e8 0x20 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_aranges + 0x0000000000001508 0x70 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_aranges + 0x0000000000001578 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x00000000000015a0 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00000000000015d0 0x158 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x0000000000001728 0x288 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x00000000000019b0 0x18 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_aranges + 0x00000000000019c8 0x20 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_aranges + 0x00000000000019e8 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x0000000000001a28 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x0000000000001a48 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x0000000000001ad8 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x0000000000001bb0 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x0000000000001bf0 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x0000000000001c18 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x0000000000001c40 0x48 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x0000000000001c88 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x0000000000001d08 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x0000000000001d58 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x0000000000001da8 0x20 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_aranges + 0x0000000000001dc8 0x40 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_aranges + 0x0000000000001e08 0x68 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x0000000000001e70 0x20 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x0000000000001e90 0x60 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_aranges + 0x0000000000001ef0 0x238 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x0000000000002128 0xa8 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_aranges + 0x00000000000021d0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00000000000021f0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_aranges + 0x0000000000002230 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000000022a0 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000002310 0x90 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00000000000023a0 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x0000000000002420 0x70 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x0000000000002490 0x128 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000000000025b8 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00000000000025f8 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x0000000000002698 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00000000000026d8 0xb8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_aranges + 0x0000000000002790 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00000000000027a8 0x108 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00000000000028b0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00000000000028e8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x0000000000002918 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x0000000000002950 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00000000000029b0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_aranges + 0x00000000000029d8 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x0000000000002a50 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x0000000000002a80 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x0000000000002ac8 0x70 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x0000000000002b38 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x0000000000002b58 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x0000000000002b78 0xf8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x0000000000002c70 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x0000000000002ca0 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x0000000000002d48 0x48 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x0000000000002d90 0x30 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_aranges + 0x0000000000002dc0 0x58 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_aranges + 0x0000000000002e18 0x88 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_aranges + 0x0000000000002ea0 0x20 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .debug_aranges + 0x0000000000002ec0 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x0000000000002ee8 0x168 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x0000000000003050 0xb0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_aranges + 0x0000000000003100 0xf8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00000000000031f8 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x0000000000003218 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_aranges + 0x0000000000003238 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x0000000000003258 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x0000000000003278 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .debug_aranges + 0x0000000000003298 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_aranges + 0x00000000000032b0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_aranges + 0x00000000000032d0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_aranges + 0x00000000000032f0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_aranges + 0x0000000000003310 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .debug_aranges + 0x0000000000003330 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_aranges + 0x0000000000003350 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_aranges + 0x0000000000003370 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_aranges + 0x0000000000003390 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_aranges + 0x00000000000033b0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_aranges + 0x00000000000033d0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_aranges + 0x00000000000033f0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_aranges + 0x0000000000003410 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_aranges + 0x0000000000003430 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_aranges + 0x0000000000003450 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_aranges + 0x0000000000003470 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_aranges + 0x0000000000003490 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_aranges + 0x00000000000034b0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_aranges + 0x00000000000034d0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x00000000000034f0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x0000000000003510 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_aranges + 0x0000000000003530 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x0000000000003550 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_aranges + 0x0000000000003570 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_aranges + 0x0000000000003590 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_aranges + 0x00000000000035b0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_aranges + 0x00000000000035d0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_aranges + 0x00000000000035f0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_aranges + 0x0000000000003610 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_aranges + 0x0000000000003630 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x0000000000003650 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_aranges + 0x0000000000003670 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_aranges + 0x0000000000003688 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_aranges + 0x00000000000036a8 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x00000000000036c8 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_ranges 0x0000000000000000 0x4ac8 + .debug_ranges 0x0000000000000000 0x20 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_ranges 0x0000000000000020 0x1b0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00000000000001d0 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x0000000000000240 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x00000000000002e8 0x48 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x0000000000000330 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x0000000000000358 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x0000000000000370 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x0000000000000390 0x68 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x00000000000003f8 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x0000000000000448 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x0000000000000490 0x18 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x00000000000004a8 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x00000000000004b8 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x0000000000000508 0x60 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x0000000000000568 0xa0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x0000000000000608 0x58 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x0000000000000660 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_ranges 0x0000000000000670 0x60 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00000000000006d0 0x48 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_ranges 0x0000000000000718 0x60 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x0000000000000778 0x18 esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_ranges 0x0000000000000790 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x00000000000007b0 0x238 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00000000000009e8 0x1b0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x0000000000000b98 0x40 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x0000000000000bd8 0x50 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x0000000000000c28 0x1e8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x0000000000000e10 0xe0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x0000000000000ef0 0xc0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000000fb0 0xd98 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_ranges 0x0000000000001d48 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x0000000000001da0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_ranges 0x0000000000001de0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x0000000000001e28 0x278 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00000000000020a0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00000000000020c8 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00000000000021f0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x0000000000002210 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x0000000000002248 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00000000000022a0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x00000000000022b0 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x00000000000022d8 0x108 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x00000000000023e0 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x0000000000002400 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_ranges 0x0000000000002470 0xe0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x0000000000002550 0x68 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_ranges 0x00000000000025b8 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x00000000000025d0 0x50 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x0000000000002620 0x190 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x00000000000027b0 0x3c8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x0000000000002b78 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x0000000000002ba8 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x0000000000002bb8 0x80 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x0000000000002c38 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x0000000000002d00 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x0000000000002d30 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x0000000000002d78 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x0000000000002d90 0x38 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x0000000000002dc8 0x88 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x0000000000002e50 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x0000000000002e90 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x0000000000002ed0 0x10 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_ranges 0x0000000000002ee0 0x30 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_ranges 0x0000000000002f10 0xd0 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_ranges 0x0000000000002fe0 0x50 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_ranges 0x0000000000003030 0x228 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x0000000000003258 0xe0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_ranges 0x0000000000003338 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000003348 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_ranges 0x0000000000003378 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x00000000000033d8 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000003438 0xc8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x0000000000003500 0xd0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x00000000000035d0 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x0000000000003630 0x160 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000003790 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00000000000037c0 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x0000000000003850 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x0000000000003880 0xe8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_ranges 0x0000000000003968 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x0000000000003a78 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x0000000000003aa0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x0000000000003ac0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x0000000000003ae8 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x0000000000003b38 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_ranges 0x0000000000003b50 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x0000000000003bb8 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x0000000000003bd8 0x38 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x0000000000003c10 0x90 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x0000000000003ca0 0x10 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x0000000000003cb0 0x100 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x0000000000003db0 0x20 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x0000000000003dd0 0xc8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x0000000000003e98 0x38 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x0000000000003ed0 0x20 esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_ranges 0x0000000000003ef0 0x48 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_ranges 0x0000000000003f38 0x98 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_ranges 0x0000000000003fd0 0x10 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .debug_ranges 0x0000000000003fe0 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x0000000000003ff8 0x1a0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x0000000000004198 0x1c0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_ranges 0x0000000000004358 0x180 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00000000000044d8 0xa0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_ranges 0x0000000000004578 0x40 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_ranges 0x00000000000045b8 0xa0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_ranges 0x0000000000004658 0x58 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_ranges 0x00000000000046b0 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_ranges 0x00000000000046d0 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_ranges 0x00000000000046e8 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_ranges 0x0000000000004708 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_ranges 0x0000000000004720 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_ranges 0x0000000000004738 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_ranges 0x0000000000004750 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_ranges 0x00000000000047c0 0x88 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_ranges 0x0000000000004848 0xb8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_ranges 0x0000000000004900 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_ranges 0x0000000000004920 0x70 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_ranges 0x0000000000004990 0x60 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_ranges 0x00000000000049f0 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_ranges 0x0000000000004a38 0x48 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_ranges 0x0000000000004a80 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_ranges 0x0000000000004a98 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_ranges 0x0000000000004ab0 0x18 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_line 0x0000000000000000 0x9c8c6 + .debug_line 0x0000000000000000 0x6f7 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_line 0x00000000000006f7 0x25d8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x0000000000002ccf 0xd20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x00000000000039ef 0x7d0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x00000000000041bf 0xef2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x00000000000050b1 0x1c5 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x0000000000005276 0xb2a esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x0000000000005da0 0x522 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x00000000000062c2 0x7c0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000000000006a82 0x908 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x000000000000738a 0x1083 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x000000000000840d 0xd3f esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x000000000000914c 0x4ce esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x000000000000961a 0x7e1 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x0000000000009dfb 0xc77 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x000000000000aa72 0xbb7 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x000000000000b629 0xe1 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x000000000000b70a 0xd20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x000000000000c42a 0xe22 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x000000000000d24c 0x3d9 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_line 0x000000000000d625 0x1544 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_line 0x000000000000eb69 0x770 esp-idf/hal/libhal.a(cpu_hal.c.obj) + .debug_line 0x000000000000f2d9 0x76d esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x000000000000fa46 0x4d3 esp-idf/hal/libhal.a(soc_hal.c.obj) + .debug_line 0x000000000000ff19 0x4bf esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x00000000000103d8 0x5839 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x0000000000015c11 0x2abe esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x00000000000186cf 0xba0 esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x000000000001926f 0x9f0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x0000000000019c5f 0x1e52 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x000000000001bab1 0x10dc esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x000000000001cb8d 0x140f esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x000000000001df9c 0x6615 esp-idf/heap/libheap.a(heap_tlsf.c.obj) + .debug_line 0x00000000000245b1 0xb7d esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x000000000002512e 0x34e esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x000000000002547c 0x72c esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + .debug_line 0x0000000000025ba8 0x619 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x00000000000261c1 0x2b83 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0000000000028d44 0x62b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x000000000002936f 0x13f1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x000000000002a760 0xa83 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x000000000002b1e3 0x77a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x000000000002b95d 0x990 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x000000000002c2ed 0x3b6 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x000000000002c6a3 0x823 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x000000000002cec6 0x101 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x000000000002cfc7 0x1a5f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x000000000002ea26 0x68e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x000000000002f0b4 0xce6 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + .debug_line 0x000000000002fd9a 0x149c esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0000000000031236 0x3e4 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x000000000003161a 0x3b4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_line 0x00000000000319ce 0x944 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_line 0x0000000000032312 0x7a0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x0000000000032ab2 0xa47 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x00000000000334f9 0x338e esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x0000000000036887 0x897b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x000000000003f202 0x404 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_line 0x000000000003f606 0xf7 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_line 0x000000000003f6fd 0x84f esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x000000000003ff4c 0x543 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x000000000004048f 0x5e8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x0000000000040a77 0xe8a esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x0000000000041901 0x496 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x0000000000041d97 0x6a8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x000000000004243f 0x49d esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x00000000000428dc 0x631 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x0000000000042f0d 0xff0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x0000000000043efd 0x62e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x000000000004452b 0xe67 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x0000000000045392 0x66d esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_line 0x00000000000459ff 0x933 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + .debug_line 0x0000000000046332 0xeee esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + .debug_line 0x0000000000047220 0x175 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x0000000000047395 0x143b esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_line 0x00000000000487d0 0x83ba esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x0000000000050b8a 0x173c esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + .debug_line 0x00000000000522c6 0x441 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x0000000000052707 0x5bf esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + .debug_line 0x0000000000052cc6 0xba2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x0000000000053868 0xfeb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000000000054853 0x1210 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x0000000000055a63 0x1a09 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x000000000005746c 0x8d6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x0000000000057d42 0x36d1 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x000000000005b413 0xf14 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x000000000005c327 0x1065 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x000000000005d38c 0x5b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x000000000005d942 0x1e5a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_line 0x000000000005f79c 0x473 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x000000000005fc0f 0x2300 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0000000000061f0f 0x58b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x000000000006249a 0x54b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x00000000000629e5 0x67f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x0000000000063064 0xc81 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x0000000000063ce5 0x4cf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + .debug_line 0x00000000000641b4 0xc24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0000000000064dd8 0x472 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x000000000006524a 0x8c8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x0000000000065b12 0x1639 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x000000000006714b 0x12f esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x000000000006727a 0x474 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x00000000000676ee 0x188d esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x0000000000068f7b 0x8b5 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x0000000000069830 0x1cc4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000000000006b4f4 0x5d4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x000000000006bac8 0x4df esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + .debug_line 0x000000000006bfa7 0x1575 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + .debug_line 0x000000000006d51c 0xec8 esp-idf/hal/libhal.a(systimer_hal.c.obj) + .debug_line 0x000000000006e3e4 0x400 esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + .debug_line 0x000000000006e7e4 0xa56 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000000000006f23a 0x385c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x0000000000072a96 0x2165 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_line 0x0000000000074bfb 0x2ca8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x00000000000778a3 0xba9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x000000000007844c 0xc68 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + .debug_line 0x00000000000790b4 0xb00 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x0000000000079bb4 0xbe5 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x000000000007a799 0x299 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + .debug_line 0x000000000007aa32 0x93 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + .debug_line 0x000000000007aac5 0x1e0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + .debug_line 0x000000000007aca5 0x8b1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + .debug_line 0x000000000007b556 0xa3a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + .debug_line 0x000000000007bf90 0x313 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + .debug_line 0x000000000007c2a3 0x4ab /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + .debug_line 0x000000000007c74e 0x2e5 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + .debug_line 0x000000000007ca33 0xc51 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + .debug_line 0x000000000007d684 0x5af /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + .debug_line 0x000000000007dc33 0xb37 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + .debug_line 0x000000000007e76a 0x49e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + .debug_line 0x000000000007ec08 0x63e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + .debug_line 0x000000000007f246 0x43a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + .debug_line 0x000000000007f680 0x50f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + .debug_line 0x000000000007fb8f 0x509 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + .debug_line 0x0000000000080098 0x695 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + .debug_line 0x000000000008072d 0x5cd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + .debug_line 0x0000000000080cfa 0x453 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + .debug_line 0x000000000008114d 0x5abb /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + .debug_line 0x0000000000086c08 0x281 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + .debug_line 0x0000000000086e89 0x4125 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + .debug_line 0x000000000008afae 0x5e6e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + .debug_line 0x0000000000090e1c 0x371 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + .debug_line 0x000000000009118d 0x50b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + .debug_line 0x0000000000091698 0x2808 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + .debug_line 0x0000000000093ea0 0x575 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + .debug_line 0x0000000000094415 0x3d8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + .debug_line 0x00000000000947ed 0x3cb /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + .debug_line 0x0000000000094bb8 0x29c4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + .debug_line 0x000000000009757c 0x4ee /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + .debug_line 0x0000000000097a6a 0x405e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + .debug_line 0x000000000009bac8 0x250 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + .debug_line 0x000000000009bd18 0x3f6 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + .debug_line 0x000000000009c10e 0x3d8 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + .debug_line 0x000000000009c4e6 0x3e0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + +.debug_str 0x0000000000000000 0x21786 + .debug_str 0x0000000000000000 0x945 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0xc04 (size before relaxing) + .debug_str 0x0000000000000945 0x162d esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x1d7f (size before relaxing) + .debug_str 0x0000000000001f72 0x1d4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x15e5 (size before relaxing) + .debug_str 0x0000000000002146 0x461 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x15cf (size before relaxing) + .debug_str 0x00000000000025a7 0x56ba esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x6e70 (size before relaxing) + .debug_str 0x0000000000007c61 0x83 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0xea (size before relaxing) + .debug_str 0x0000000000007ce4 0x5c1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x5e70 (size before relaxing) + .debug_str 0x00000000000082a5 0xbe esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x1ba5 (size before relaxing) + .debug_str 0x0000000000008363 0xee esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x4f42 (size before relaxing) + .debug_str 0x0000000000008451 0x1f4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x1417 (size before relaxing) + .debug_str 0x0000000000008645 0x2f2f esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x83be (size before relaxing) + .debug_str 0x000000000000b574 0x33c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x48e8 (size before relaxing) + .debug_str 0x000000000000b8b0 0xd2 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x4adb (size before relaxing) + .debug_str 0x000000000000b982 0xff esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x572f (size before relaxing) + .debug_str 0x000000000000ba81 0x19a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1552 (size before relaxing) + .debug_str 0x000000000000bc1b 0x13b esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x1415 (size before relaxing) + .debug_str 0x000000000000bd56 0x7b esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0xf0 (size before relaxing) + .debug_str 0x000000000000bdd1 0x23f esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14c5 (size before relaxing) + .debug_str 0x000000000000c010 0x250 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x5b70 (size before relaxing) + .debug_str 0x000000000000c260 0x8c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x18b6 (size before relaxing) + .debug_str 0x000000000000c2ec 0x3f1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x3ca7 (size before relaxing) + .debug_str 0x000000000000c6dd 0x18a esp-idf/hal/libhal.a(cpu_hal.c.obj) + 0x12d4 (size before relaxing) + .debug_str 0x000000000000c867 0x157 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x19bd (size before relaxing) + .debug_str 0x000000000000c9be 0xcc esp-idf/hal/libhal.a(soc_hal.c.obj) + 0x11c6 (size before relaxing) + .debug_str 0x000000000000ca8a 0xc0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x2d60 (size before relaxing) + .debug_str 0x000000000000cb4a 0x9a1 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1fa5 (size before relaxing) + .debug_str 0x000000000000d4eb 0x736 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x334f (size before relaxing) + .debug_str 0x000000000000dc21 0x287 esp-idf/log/liblog.a(log.c.obj) + 0x9d9 (size before relaxing) + .debug_str 0x000000000000dea8 0x146 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1587 (size before relaxing) + .debug_str 0x000000000000dfee 0x616 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x19e2 (size before relaxing) + .debug_str 0x000000000000e604 0x1b1 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x15a4 (size before relaxing) + .debug_str 0x000000000000e7b5 0x40a esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x17d4 (size before relaxing) + .debug_str 0x000000000000ebbf 0x50c esp-idf/heap/libheap.a(heap_tlsf.c.obj) + 0xcc2 (size before relaxing) + .debug_str 0x000000000000f0cb 0x4cb esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xcaa (size before relaxing) + .debug_str 0x000000000000f596 0xeb esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x79b (size before relaxing) + .debug_str 0x000000000000f681 0x139 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + 0x4c67 (size before relaxing) + .debug_str 0x000000000000f7ba 0x338 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xbfa (size before relaxing) + .debug_str 0x000000000000faf2 0x76b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1b76 (size before relaxing) + .debug_str 0x000000000001025d 0x109 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x1362 (size before relaxing) + .debug_str 0x0000000000010366 0x3cf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x11f6 (size before relaxing) + .debug_str 0x0000000000010735 0x317 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xc9a (size before relaxing) + .debug_str 0x0000000000010a4c 0x1e3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + 0x891 (size before relaxing) + .debug_str 0x0000000000010c2f 0x182 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8c1 (size before relaxing) + .debug_str 0x0000000000010db1 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x6d4 (size before relaxing) + .debug_str 0x0000000000010e2d 0xde esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x1378 (size before relaxing) + .debug_str 0x0000000000010f0b 0x64 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0xd9 (size before relaxing) + .debug_str 0x0000000000010f6f 0x45d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18e9 (size before relaxing) + .debug_str 0x00000000000113cc 0xaa esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x1321 (size before relaxing) + .debug_str 0x0000000000011476 0x911 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + 0x2789 (size before relaxing) + .debug_str 0x0000000000011d87 0x500 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1a95 (size before relaxing) + .debug_str 0x0000000000012287 0x6a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xdf (size before relaxing) + .debug_str 0x00000000000122f1 0x71 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0xe6 (size before relaxing) + .debug_str 0x0000000000012362 0x71 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0xe6 (size before relaxing) + .debug_str 0x00000000000123d3 0xc8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x1476 (size before relaxing) + .debug_str 0x000000000001249b 0x185 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x25b7 (size before relaxing) + .debug_str 0x0000000000012620 0x8bd esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1db5 (size before relaxing) + .debug_str 0x0000000000012edd 0xdf9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2886 (size before relaxing) + .debug_str 0x0000000000013cd6 0x79 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x124b (size before relaxing) + .debug_str 0x0000000000013d4f 0x79 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0xee (size before relaxing) + .debug_str 0x0000000000013dc8 0x9c esp-idf/freertos/libfreertos.a(list.c.obj) + 0x136c (size before relaxing) + .debug_str 0x0000000000013e64 0x71 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x11a8 (size before relaxing) + .debug_str 0x0000000000013ed5 0x1ea esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x7ba (size before relaxing) + .debug_str 0x00000000000140bf 0x3a0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x18c3 (size before relaxing) + .debug_str 0x000000000001445f 0x106 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x7e6 (size before relaxing) + .debug_str 0x0000000000014565 0x80 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x672 (size before relaxing) + .debug_str 0x00000000000145e5 0x180 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0xacd (size before relaxing) + .debug_str 0x0000000000014765 0x10a esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x7b8 (size before relaxing) + .debug_str 0x000000000001486f 0x22c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x15f6 (size before relaxing) + .debug_str 0x0000000000014a9b 0xdc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc25 (size before relaxing) + .debug_str 0x0000000000014b77 0x9f8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x1ce9 (size before relaxing) + .debug_str 0x000000000001556f 0x3a esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x143f (size before relaxing) + .debug_str 0x00000000000155a9 0x178 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + 0x1507 (size before relaxing) + .debug_str 0x0000000000015721 0x280 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + 0x1fdf (size before relaxing) + .debug_str 0x00000000000159a1 0x79 esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) + 0xee (size before relaxing) + .debug_str 0x0000000000015a1a 0x271 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x180f (size before relaxing) + .debug_str 0x0000000000015c8b 0x13a5 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4472 (size before relaxing) + .debug_str 0x0000000000017030 0x645 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + 0x332b (size before relaxing) + .debug_str 0x0000000000017675 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x11a0 (size before relaxing) + .debug_str 0x00000000000176fb 0x1c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + 0x9e6 (size before relaxing) + .debug_str 0x00000000000178c1 0x3fc esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0xd34 (size before relaxing) + .debug_str 0x0000000000017cbd 0x320 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x281f (size before relaxing) + .debug_str 0x0000000000017fdd 0x76b esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x1d16 (size before relaxing) + .debug_str 0x0000000000018748 0x2d8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1927 (size before relaxing) + .debug_str 0x0000000000018a20 0x145 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1ce4 (size before relaxing) + .debug_str 0x0000000000018b65 0x80e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4836 (size before relaxing) + .debug_str 0x0000000000019373 0x2ae esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x4806 (size before relaxing) + .debug_str 0x0000000000019621 0x345 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x439f (size before relaxing) + .debug_str 0x0000000000019966 0xc3 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xb8e (size before relaxing) + .debug_str 0x0000000000019a29 0x907 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x1adf (size before relaxing) + .debug_str 0x000000000001a330 0x122 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xd36 (size before relaxing) + .debug_str 0x000000000001a452 0x7c9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x161a (size before relaxing) + .debug_str 0x000000000001ac1b 0x106 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xddc (size before relaxing) + .debug_str 0x000000000001ad21 0xc5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0xe06 (size before relaxing) + .debug_str 0x000000000001ade6 0xe3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xe48 (size before relaxing) + .debug_str 0x000000000001aec9 0x1aa esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xf8d (size before relaxing) + .debug_str 0x000000000001b073 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + 0xd59 (size before relaxing) + .debug_str 0x000000000001b115 0x1e5 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x349b (size before relaxing) + .debug_str 0x000000000001b2fa 0xbe esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x808 (size before relaxing) + .debug_str 0x000000000001b3b8 0x12c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x1dce (size before relaxing) + .debug_str 0x000000000001b4e4 0x185 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5382 (size before relaxing) + .debug_str 0x000000000001b669 0x7b esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xf0 (size before relaxing) + .debug_str 0x000000000001b6e4 0xd1 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x6ee (size before relaxing) + .debug_str 0x000000000001b7b5 0x44b esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x22af (size before relaxing) + .debug_str 0x000000000001bc00 0x167 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x3338 (size before relaxing) + .debug_str 0x000000000001bd67 0x6f6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x37c4 (size before relaxing) + .debug_str 0x000000000001c45d 0x2e6 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8e7 (size before relaxing) + .debug_str 0x000000000001c743 0xbb esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + 0x1287 (size before relaxing) + .debug_str 0x000000000001c7fe 0x3c6 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + 0x34c6 (size before relaxing) + .debug_str 0x000000000001cbc4 0x26c esp-idf/hal/libhal.a(systimer_hal.c.obj) + 0x146c (size before relaxing) + .debug_str 0x000000000001ce30 0x8f esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + 0x121c (size before relaxing) + .debug_str 0x000000000001cebf 0x1367 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x3130 (size before relaxing) + .debug_str 0x000000000001e226 0x74f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1da6 (size before relaxing) + .debug_str 0x000000000001e975 0x4ac esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x4079 (size before relaxing) + .debug_str 0x000000000001ee21 0x723 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x1fd8 (size before relaxing) + .debug_str 0x000000000001f544 0x25d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + 0x783 (size before relaxing) + .debug_str 0x000000000001f7a1 0x9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + 0x783 (size before relaxing) + .debug_str 0x000000000001f7aa 0xa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + 0x784 (size before relaxing) + .debug_str 0x000000000001f7b4 0xa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + 0x784 (size before relaxing) + .debug_str 0x000000000001f7be 0x14c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + 0x629 (size before relaxing) + .debug_str 0x000000000001f90a 0x73 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + 0x146 (size before relaxing) + .debug_str 0x000000000001f97d 0xf9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + 0x5fb (size before relaxing) + .debug_str 0x000000000001fa76 0x23a /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + 0x820 (size before relaxing) + .debug_str 0x000000000001fcb0 0x15d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + 0x970 (size before relaxing) + .debug_str 0x000000000001fe0d 0x8c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + 0x646 (size before relaxing) + .debug_str 0x000000000001fe99 0x92 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + 0x853 (size before relaxing) + .debug_str 0x000000000001ff2b 0x87 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + 0x776 (size before relaxing) + .debug_str 0x000000000001ffb2 0xaf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + 0x993 (size before relaxing) + .debug_str 0x0000000000020061 0x78 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + 0x7e2 (size before relaxing) + .debug_str 0x00000000000200d9 0xf4 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + 0x7fd (size before relaxing) + .debug_str 0x00000000000201cd 0x7f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + 0x770 (size before relaxing) + .debug_str 0x000000000002024c 0xa1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + 0x8c5 (size before relaxing) + .debug_str 0x00000000000202ed 0x87 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + 0x799 (size before relaxing) + .debug_str 0x0000000000020374 0x77 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + 0x823 (size before relaxing) + .debug_str 0x00000000000203eb 0x116 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + 0x61f (size before relaxing) + .debug_str 0x0000000000020501 0x83 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + 0x7b3 (size before relaxing) + .debug_str 0x0000000000020584 0x8c /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + 0x7c0 (size before relaxing) + .debug_str 0x0000000000020610 0x9d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + 0x7a8 (size before relaxing) + .debug_str 0x00000000000206ad 0x5c0 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + 0xf11 (size before relaxing) + .debug_str 0x0000000000020c6d 0x116 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + 0x66a (size before relaxing) + .debug_str 0x0000000000020d83 0x20 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + 0xf5f (size before relaxing) + .debug_str 0x0000000000020da3 0x9 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + 0x1015 (size before relaxing) + .debug_str 0x0000000000020dac 0x7d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + 0x7a2 (size before relaxing) + .debug_str 0x0000000000020e29 0x71 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + 0x789 (size before relaxing) + .debug_str 0x0000000000020e9a 0x19f /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + 0xad9 (size before relaxing) + .debug_str 0x0000000000021039 0x8e /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + 0x827 (size before relaxing) + .debug_str 0x00000000000210c7 0x75 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + 0x617 (size before relaxing) + .debug_str 0x000000000002113c 0x166 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + 0x974 (size before relaxing) + .debug_str 0x00000000000212a2 0xc1 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + 0xa82 (size before relaxing) + .debug_str 0x0000000000021363 0x130 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + 0x674 (size before relaxing) + .debug_str 0x0000000000021493 0xe /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + 0xe88 (size before relaxing) + .debug_str 0x00000000000214a1 0xfa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + 0x8f6 (size before relaxing) + .debug_str 0x000000000002159b 0xca /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + 0x9d7 (size before relaxing) + .debug_str 0x0000000000021665 0x8d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + 0x985 (size before relaxing) + .debug_str 0x00000000000216f2 0x94 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + 0x98c (size before relaxing) + +Cross Reference Table + +Symbol File +Cache_Dbus_MMU_Set esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Disable_DCache esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +Cache_Disable_ICache esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +Cache_Enable_ICache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Get_DROM_MMU_End esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Get_IROM_MMU_End esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Ibus_MMU_Set esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Invalidate_Addr esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +Cache_Invalidate_DCache_All esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Invalidate_ICache_All esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Occupy_DCache_MEMORY esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Occupy_ICache_MEMORY esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Resume_DCache esp-idf/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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Resume_ICache esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Set_DCache_Mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Set_ICache_Mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +Cache_Set_IDROM_MMU_Size esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Suspend_DCache 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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Suspend_ICache esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +GDMA esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/hal/libhal.a(gdma_hal.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +GPSPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +GPSPI3 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +RTCCNTL 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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +RTCIO esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +SPIMEM1 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SYSTIMER esp-idf/hal/libhal.a(systimer_hal.c.obj) +SysTickIsrHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +TIMERG0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +UART0 esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_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) +UART2 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +Xthal_intlevel /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_Balloc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +_Bfree /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +_DebugExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +_KernelExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_PathLocale /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +_UserExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +__DTOR_END__ /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +__TMC_END__ /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtend.o + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +__action_table /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__adddf3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__any_on /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__ascii_mbtowc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +__ascii_wctomb /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +__assert /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) +__assert_func /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/hal/libhal.a(systimer_hal.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(partition.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_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.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) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_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/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +__b2d /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__bswapdi2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__chclass /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__copybits /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.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) +__cxx_eh_arena_size_get esp-idf/esp_system/libesp_system.a(startup.c.obj) +__d2b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__default_global_locale /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +__divdf3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__divdi3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__dso_handle /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +__env_lock /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) +__env_unlock /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) +__eqdf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__errno /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +__fixdfsi /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_fixdfsi.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__floatsidf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__floatunsidf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_floatsidf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__fp_lock_all /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__fp_unlock_all /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__gedf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-errno.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + esp-idf/main/libmain.a(hello_world_main.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/vfs/libvfs.a(vfs.c.obj) +__gettzinfo /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gettzinfo.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__global_locale_ptr /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) +__gtdf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__hi0bits /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__i2b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +__itoa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) +__ledf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__lo0bits /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__locale_mb_cur_max /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__localeconv_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) +__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) +__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) +__lshift /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__ltdf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__mcmp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__mdiff /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__moddi3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-month_lengths.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__mprec_bigtens /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__mprec_tens /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__mprec_tinytens /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__muldf3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_muldf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__multadd /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__multiply /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__nedf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__pow5mult /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) +__ratio /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__s2b /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__sccl /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sccl.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__sclose /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__seofread /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) +__sf_fake_stderr /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +__sf_fake_stdin /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +__sf_fake_stdout /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +__sflags /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-flags.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +__sflush_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) +__sfmoreglue /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__sfp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +__sfp_lock_acquire /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +__sfp_lock_release /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +__sfvwrite_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) +__sinit /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +__sinit_lock_acquire /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__sinit_lock_release /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__smakebuf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +__sprint_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) +__sread /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__srefill_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +__sseek /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__ssprint_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__ssrefill_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__ssvfiscanf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) +__state_table /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__subdf3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_addsubdf3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__submore /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +__swhatbuf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) +__swrite /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +__swsetup_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) +__tz_lock /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__tz_unlock /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__tzcalc_limits /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +__ubsan_handle_add_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_builtin_unreachable esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_divrem_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_invalid_builtin esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_load_invalid_value esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_missing_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_mul_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_negate_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_arg esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_pointer_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_shift_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_sub_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch_v1 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_vla_bound_not_positive esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_include esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__udivdi3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_udivdi3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__ulp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +__umoddi3 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_umoddi3.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti\libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +__utoa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) +__wrap___deregister_frame_info /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +__wrap___register_frame_info /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crtbegin.o +_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cleanup /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +_cleanup_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ctype_ /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ctype_.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_daylight /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +_dtoa_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_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/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.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/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_fflush_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +_findenv_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) +_fini /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o +_fiprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.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/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +_fprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) +_fputs_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_task_coproc_state esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_fseek_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) +_fseeko_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ftello_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +_fwalk /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) +_fwalk_reent /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +_fwrite_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) +_getenv_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-impure.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_init /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/no-rtti/crti.o +_invalid_pc_placeholder esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_localeconv_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.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/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_mbtowc_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbtowc_r.o) +_mprec_log10 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_printf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) +_puts_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_setlocale_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +_sfread_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_siscanf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) +_snprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) +_start /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_strerror_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) +_strtol_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_strtoll_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_strtoul_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_strtoull_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_sungetc_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +_svfiprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) +_svfprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) +_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_thread_local_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_start esp-idf/freertos/libfreertos.a(port.c.obj) +_times_r esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_timezone /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_tzname /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_tzset_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +_tzset_unlocked /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) +_tzset_unlocked_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset.o) +_ungetc_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-u_strerr.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) +_vfprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) +_vprintf_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) +_wctomb_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-wctomb_r.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_write_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_xt_alloca_exc esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_context_save esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_coproc_init esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.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/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_medint2_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) +_xt_panic esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_user_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +abort esp-idf/newlib/libnewlib.a(abort.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) + esp-idf/hal/libhal.a(sha_hal.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/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.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/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(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +access esp-idf/vfs/libvfs.a(vfs.c.obj) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +app_main esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_get_chip_revision esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32s3.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_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_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_wrap_set esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +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_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +brownout_hal_intr_clear esp-idf/hal/libhal.a(brownout_hal.c.obj) +brownout_hal_intr_enable esp-idf/hal/libhal.a(brownout_hal.c.obj) +bzero /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_start_cpu1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_user_start esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +cleanup_glue /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-reent.o) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) +cpu_hal_clear_breakpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) +cpu_hal_clear_watchpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +cpu_hal_set_breakpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +cpu_hal_set_vecbase esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cpu_hal_set_watchpoint esp-idf/hal/libhal.a(cpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +environ /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-environ.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_app_desc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) +esp_backtrace_get_next_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_get_start esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_print esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_backtrace_print_from_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_brownout_disable esp-idf/esp_system/libesp_system.a(brownout.c.obj) +esp_brownout_init esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cache_err_int_init esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_chip_info esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/main/libmain.a(hello_world_main.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_clk_cpu_freq 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_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_config_data_cache_mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_config_instruction_cache_mode esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_cpu_in_ocd_debug_mode esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.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_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_crosscore_int_send_freq_switch 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_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_crypto_mpi_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_mpi_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) +esp_crypto_sha_aes_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_crypto_sha_aes_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_crypto_shared_gdma_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +esp_crypto_shared_gdma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) +esp_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_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_dport_access_int_abort esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_dport_access_int_pause esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_dport_access_int_resume esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_dport_access_read_buffer esp-idf/esp_hw_support/libesp_hw_support.a(dport_access.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) +esp_dport_access_stall_other_cpu_end esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_dport_access_stall_other_cpu_start esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_enable_cache_wrap esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_enable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_flash_chip_boya esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.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_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/spi_flash/libspi_flash.a(partition.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_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-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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_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/spi_flash/libspi_flash.a(partition.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_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/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/main/libmain.a(hello_world_main.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(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) +esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gpio.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_ipc_call esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_call_blocking esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_func esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) +esp_ipc_func_arg esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_asm_call esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_asm_call_blocking esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_end_fl esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_handler esp-idf/esp_ipc/libesp_ipc.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_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) +esp_ipc_isr_release_other_cpu esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_stall_abort esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_ipc_isr_stall_other_cpu esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_stall_pause esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_stall_resume esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_ipc_isr_start_fl esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_waiting_for_finish_cmd esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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/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_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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/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/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/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32s3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.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_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_writev esp-idf/log/liblog.a(log.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_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_description esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_get_app_elf_sha256 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_init_app_elf_sha256 esp-idf/app_update/libapp_update.a(esp_app_desc.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/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_deregister_external esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_erase_range esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find_first esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_sha256 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_iterator_release esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/spi_flash/libspi_flash.a(partition.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_partition_mmap esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read_raw esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_register_external esp-idf/spi_flash/libspi_flash.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/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write_raw esp-idf/spi_flash/libspi_flash.a(partition.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_pm_configure esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_dump_locks esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_get_configuration esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_get_cpu_freq esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_get_mode esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_idle_hook esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_init esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_isr_hook esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_switch_mode esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_impl_waiti esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_pm_lock_acquire esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_create esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_lock_delete esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) +esp_pm_lock_release esp-idf/esp_pm/libesp_pm.a(pm_locks.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_register_inform_out_light_sleep_overhead_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_pm/libesp_pm.a(pm_impl.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_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_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_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/main/libmain.a(hello_world_main.c.obj) +esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +esp_rom_delay_us esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/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(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/driver/libdriver.a(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/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_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/spi_flash/libspi_flash.a(partition.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) +esp_rom_printf esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.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/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_spiflash_config_clk esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +esp_rom_spiflash_config_readmode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_uart_rx_one_char esp-idf/newlib/libnewlib.a(syscalls.c.obj) +esp_rom_uart_set_as_console esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_uart_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/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(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +esp_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_sha_512_t_init_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_write_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_startup_start_app esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_startup_start_app_common esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_startup_start_app_other_cores esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_sync_counters_rtc_and_frc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/newlib/libnewlib.a(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_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.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_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +esp_task_wdt_isr_user_handler 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_status 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_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_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_timer_is_active esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_vApplicationIdleHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vApplicationTickHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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_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-idf/esp_system/libesp_system.a(startup.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_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_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_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_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_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) +ets_get_cpu_frequency esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_rom_layout_p esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ets_update_cpu_frequency esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +fclose /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +fflush /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-refill.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) +fiprintf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-assert.o) +flash_rom_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +fopen /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +fprintf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fprintf.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fputs /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +frexp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) +fseek /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseek.o) +fseeko /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) +ftello /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) +fwrite /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +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_spiram_ok esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_startup_fn esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_startup_time esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_ticks_per_us_pro esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +gdma_append esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_apply_strategy esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_connect esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_del_channel esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_disconnect esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_get_channel_id esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_hal_init esp-idf/hal/libhal.a(gdma_hal.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_new_channel esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gdma_periph_signals esp-idf/soc/libsoc.a(gdma_periph.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_register_rx_event_callbacks esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_register_tx_event_callbacks esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_reset esp-idf/driver/libdriver.a(gdma.c.obj) +gdma_set_transfer_ability esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_start esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) +gdma_stop esp-idf/driver/libdriver.a(gdma.c.obj) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +gettimeofday /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +gmtime_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-gmtime_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.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_force_hold_all esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_force_unhold_all esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_level esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_install_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_enable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_iomux_in esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + 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) +gpio_sleep_sel_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_sleep_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_sleep_set_pull_mode esp-idf/driver/libdriver.a(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) +heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.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(port_common.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/freertos/libfreertos.a(tasks.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) +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) +int_wdt_app_cpu_ticked esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +interrupt_controller_hal_desc_flags esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +interrupt_controller_hal_desc_level esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +interrupt_controller_hal_desc_table esp-idf/hal/libhal.a(interrupt_descriptor_table.c.obj) + esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) +interrupt_controller_hal_desc_type esp-idf/hal/libhal.a(interrupt_controller_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +intr_matrix_set esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +iswspace /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) +iswspace_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace_l.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-iswspace.o) +itoa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +localeconv /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-localeconv.o) +localtime_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +main /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.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) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbrtowc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mbrtowc.o) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memchr.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) +memcmp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +memcpy /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memcpy.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_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/vfs/libvfs.a(vfs.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/pthread/libpthread.a(pthread.c.obj) +memmove /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memmove.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fvwrite.o) +memset /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-memset.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-bzero.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.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/app_update/libapp_update.a(esp_ota_ops.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(partition.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + esp-idf/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) +mkdir esp-idf/vfs/libvfs.a(vfs.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_util.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) +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) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) +panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.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) +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) +periph_inform_out_light_sleep_overhead esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +periph_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +periph_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/driver/libdriver.a(uart.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/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_IntStackTop 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_switch_flag 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_common.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +pread esp-idf/vfs/libvfs.a(vfs.c.obj) +printf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-printf.o) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.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_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) + esp-idf/pthread/libpthread.a(pthread.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_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) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) +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_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fwrite.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ftello.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fflush.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +puts /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +pxCurrentTCB esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +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/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiscanf.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +rom_config_data_cache_mode esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +rom_config_instruction_cache_mode esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_i2c_readReg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_i2c_readReg_Mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_i2c_writeReg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_i2c_writeReg_Mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32s3.c.obj) +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_enable_internal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_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_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_bbpll_configure esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_internal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_freq_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_deep_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_gpio_deinit esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_all esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_en_all esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_init esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_isolate esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pulldown_en esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pullup_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pullup_en esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_direction esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_io_desc esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +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/driver/libdriver.a(gpio.c.obj) +rtc_isr_deregister esp-idf/driver/libdriver.a(rtc_module.c.obj) +rtc_isr_register esp-idf/driver/libdriver.a(rtc_module.c.obj) +rtc_light_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_pu esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_sleep_set_wakeup_time esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_spinlock esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtcio_hal_isolate esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +s_rtc_isr_handler_list_lock esp-idf/driver/libdriver.a(rtc_module.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +select esp-idf/vfs/libvfs.a(vfs.c.obj) +setlocale /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_hash_dma esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_sha512_init_hash esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_write_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +siscanf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) +snprintf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-snprintf.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.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_hal_stall_core esp-idf/hal/libhal.a(soc_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +soc_hal_unstall_core esp-idf/hal/libhal.a(soc_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_util.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(spi_flash_os_func_app.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(spi_flash_os_func_app.c.obj) +spi_bus_lock_register_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) +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(spi_flash_os_func_app.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_common_set_dummy_output esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_dummy_len_fix esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_chip_boya_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) +spi_flash_chip_boya_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) +spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.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_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.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_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_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_mxic_read_unique_id 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_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_encryption_hal_check esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_destroy esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_disable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_done esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_enable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_prepare esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_erase_range 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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_erase_sector esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_get_chip_size esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/main/libmain.a(hello_world_main.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/esp_system/libesp_system.a(startup.c.obj) +spi_flash_hal_check_status esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_common_command esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_device_config esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_erase_block esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_chip esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_sector esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_init esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_program_page esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_read esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_resume esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_set_write_protect esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_setup_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.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) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.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_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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) +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_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) +spicommon_slave_dma_chan_alloc esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_slave_free_dma esp-idf/driver/libdriver.a(spi_common.c.obj) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_cpu_other_cores esp-idf/esp_system/libesp_system.a(startup.c.obj) +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) +strcat /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcat.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strcmp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcmp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +strcpy /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcpy.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strerror /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) +strerror_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror.o) +strerror_r /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +strlen /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlen.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strlcat.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strerror_r.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncmp /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncmp.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-getenv_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strncpy.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +strstr /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strtol /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) +strtol_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtol.o) +strtoll /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) +strtoll_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoll.o) +strtoul /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-tzset_r.o) +strtoul_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoul.o) +strtoull /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) +strtoull_l /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-strtoull.o) +syscall_table_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +systimer_hal_connect_alarm_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_counter_can_stall_by_cpu esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_counter_value_advance esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_enable_alarm_int esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_enable_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_alarm_value esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_counter_value esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_get_time esp-idf/hal/libhal.a(systimer_hal.c.obj) +systimer_hal_init esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_select_alarm_mode esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +systimer_hal_set_alarm_period esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +systimer_hal_set_alarm_target esp-idf/hal/libhal.a(systimer_hal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) +taskYIELD_OTHER_CORE esp-idf/freertos/libfreertos.a(tasks.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) +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) +tlsf_add_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_align_size esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_alloc_overhead esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_block_size esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_block_size_max esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_block_size_min esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_create esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_create_with_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_free esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_get_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_memalign esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_memalign_offs esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_pool_overhead esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_realloc esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_remove_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) +tlsf_size esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_walk_pool esp-idf/heap/libheap.a(heap_tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tzset /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-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_div_modify esp-idf/esp_rom/libesp_rom.a(esp_rom_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_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_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_isr_free esp-idf/driver/libdriver.a(uart.c.obj) +uart_isr_register esp-idf/driver/libdriver.a(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_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) +ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +ungetc /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-ungetc.o) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) +utime esp-idf/vfs/libvfs.a(vfs.c.obj) +utoa /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-utoa.o) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.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_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.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_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortEvaluateYieldFromISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(gdma.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.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_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.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_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortReleaseTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +vPortStoreTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.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) +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) +vTaskAllocateMPURegions esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) + esp-idf/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/main/libmain.a(hello_world_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_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +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/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.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(port.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.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) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vfiprintf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfiprintf.o) +vfprintf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vprintf /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xtensa-esp32s3-elf/8.4.0/../../../../xtensa-esp32s3-elf/lib/no-rtti\libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.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.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.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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +wdt_hal_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.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_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wifi_bt_common_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +wifi_bt_common_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +wifi_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +wifi_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_pm/libesp_pm.a(pm_impl.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/log/liblog.a(log_freertos.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) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.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/newlib/libnewlib.a(locks.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.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/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.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/vfs/libvfs.a(vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCanRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(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) +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) +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) +xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc_isr.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskCreateRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCreateRestrictedStatic esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCurrentTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +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) + esp-idf/freertos/libfreertos.a(port_common.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_ipc/libesp_ipc.a(esp_ipc.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/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) +xTaskNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.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) +xt_debugexception esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint5 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_int_has_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_ints_off esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +xt_ints_on esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_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/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +xt_unhandled_interrupt esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xthal_restore_extra_nw /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_save_extra_nw /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_set_intclear /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) +xthal_window_spill /home/xy/esp/esp-idf/components/xtensa/esp32s3/libxt_hal.a(windowspill_asm.o) + esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw /home/xy/esp/esp-idf/components/xtensa/esp32s3/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 0d2be5cccb..fc7b773cb1 100644 --- a/tools/test_idf_size/expected_output +++ b/tools/test_idf_size/expected_output @@ -2,2347 +2,417 @@ *** Running idf_size.py... Total sizes: - DRAM .data size: 9324 bytes - DRAM .bss size: 8296 bytes -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) - Flash code: 146944 bytes - Flash rodata: 39580 bytes -Total image size:~ 234780 bytes (.bin may be padded larger) +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) + .data size: 9324 bytes + .bss size: 8296 bytes +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) + .text size: 37908 bytes + .vectors size: 1024 bytes +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) + .data size: 9324 bytes + .bss size: 8296 bytes + .text size: 37908 bytes + .vectors size: 1024 bytes +Used Flash size : 186524 bytes + .text : 146944 bytes + .rodata : 39580 bytes +Total image size: 283036 bytes (.bin may be padded larger) *** Running idf_size.py on bootloader... Total sizes: - DRAM .data size: 4 bytes - DRAM .bss size: 48 bytes - DRAM other size: 7160 bytes (.dram0.rodata) -Used static DRAM: 7212 bytes ( 58324 available, 11.0% used) -Used static IRAM: 4445 bytes ( 92835 available, 4.6% used) - Flash code: 0 bytes - Flash rodata: 0 bytes -Total image size:~ 11609 bytes (.bin may be padded larger) +Used static DRAM: 7212 bytes ( 58324 remain, 11.0% used) + .data size: 4 bytes + .bss size: 48 bytes + .rodata size: 7160 bytes +Used static IRAM: 18796 bytes ( 78484 remain, 19.3% used) + .text size: 18796 bytes +Used stat D/IRAM: 26008 bytes ( 136808 remain, 16.0% used) + .data size: 4 bytes + .bss size: 48 bytes + .text size: 18796 bytes + .rodata size: 7160 bytes +Total image size: 51920 bytes (.bin may be padded larger) *** Running idf_size.py --archives... Total sizes: - DRAM .data size: 9324 bytes - DRAM .bss size: 8296 bytes -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) - Flash code: 146944 bytes - Flash rodata: 39580 bytes -Total image size:~ 234780 bytes (.bin may be padded larger) +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) + .data size: 9324 bytes + .bss size: 8296 bytes +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) + .text size: 37908 bytes + .vectors size: 1024 bytes +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) + .data size: 9324 bytes + .bss size: 8296 bytes + .text size: 37908 bytes + .vectors size: 1024 bytes +Used Flash size : 186524 bytes + .text : 146944 bytes + .rodata : 39580 bytes +Total image size: 283036 bytes (.bin may be padded larger) Per-archive contributions to ELF file: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - liblwip.a 14 3751 0 0 0 66978 13936 84679 - libc.a 0 0 0 0 0 55583 3889 59472 - libesp32.a 2635 2375 0 7758 0 4814 8133 25715 - libfreertos.a 4156 832 0 12853 0 0 1545 19386 - libspi_flash.a 36 359 0 7004 0 886 1624 9909 - libsoc.a 660 8 0 3887 0 0 3456 8011 - libheap.a 1331 4 0 4376 0 1218 980 7909 - libgcc.a 4 20 0 104 0 5488 888 6504 - libvfs.a 232 103 0 0 0 3770 403 4508 - libunity.a 0 121 0 0 0 2316 830 3267 - libstdc++.a 8 16 0 0 0 1827 1062 2913 - libnewlib.a 152 272 0 853 0 803 86 2166 - libpthread.a 16 12 0 174 0 774 638 1614 - libdriver.a 40 20 0 0 0 961 537 1558 - liblog.a 8 268 0 456 0 396 166 1294 - libapp_update.a 0 0 0 0 0 123 717 840 - libtcpip_adapter.a 0 81 0 0 0 180 359 620 - libhal.a 0 0 0 515 0 0 32 547 - libm.a 0 0 0 92 0 0 0 92 - libmain.a 0 0 0 0 0 53 10 63 - libcxx.a 0 0 0 0 0 11 0 11 -libxtensa-debug-module.a 0 0 0 8 0 0 0 8 - libbootloader_support.a 0 0 0 0 0 0 0 0 - libcoexist.a 0 0 0 0 0 0 0 0 - libcore.a 0 0 0 0 0 0 0 0 - libethernet.a 0 0 0 0 0 0 0 0 - libmbedtls.a 0 0 0 0 0 0 0 0 - libmesh.a 0 0 0 0 0 0 0 0 - libnet80211.a 0 0 0 0 0 0 0 0 - libnvs_flash.a 0 0 0 0 0 0 0 0 - libphy.a 0 0 0 0 0 0 0 0 - libpp.a 0 0 0 0 0 0 0 0 - librtc.a 0 0 0 0 0 0 0 0 - libsmartconfig_ack.a 0 0 0 0 0 0 0 0 - libwpa.a 0 0 0 0 0 0 0 0 - libwpa2.a 0 0 0 0 0 0 0 0 - libwpa_supplicant.a 0 0 0 0 0 0 0 0 - libwps.a 0 0 0 0 0 0 0 0 + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + liblwip.a 14 3751 0 0 3765 66978 13936 80928 + libc.a 0 0 0 0 0 55583 3709 59292 + libesp32.a 2635 2375 7758 0 12768 4814 8133 23340 + libfreertos.a 4156 832 12428 425 17841 0 1545 18554 + libspi_flash.a 36 359 7004 0 7399 886 1624 9550 + libsoc.a 660 8 3887 0 4555 0 3456 8003 + libheap.a 1331 4 4376 0 5711 1218 980 7905 + libgcc.a 4 20 104 0 128 5488 888 6484 + libvfs.a 232 103 0 0 335 3770 403 4405 + libunity.a 0 121 0 0 121 2316 830 3146 + libstdc++.a 8 16 0 0 24 1827 1062 2897 + libnewlib.a 152 272 853 0 1277 803 86 1894 + libpthread.a 16 12 174 0 202 774 638 1602 + libdriver.a 40 20 0 0 60 961 537 1538 + liblog.a 8 268 456 0 732 396 166 1026 + libapp_update.a 0 0 0 0 0 123 717 840 + libhal.a 0 0 515 0 515 0 32 547 + libtcpip_adapter.a 0 81 0 0 81 180 359 539 + libm.a 0 0 92 0 92 0 0 92 + libmain.a 0 0 0 0 0 53 10 63 + libcxx.a 0 0 0 0 0 11 0 11 +libxtensa-debug-module.a 0 0 8 0 8 0 0 8 + libbootloader_support.a 0 0 0 0 0 0 0 0 + libcoexist.a 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 + libwpa_supplicant.a 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 *** Running idf_size.py --files... Total sizes: - DRAM .data size: 9324 bytes - DRAM .bss size: 8296 bytes -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) - Flash code: 146944 bytes - Flash rodata: 39580 bytes -Total image size:~ 234780 bytes (.bin may be padded larger) +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) + .data size: 9324 bytes + .bss size: 8296 bytes +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) + .text size: 37908 bytes + .vectors size: 1024 bytes +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) + .data size: 9324 bytes + .bss size: 8296 bytes + .text size: 37908 bytes + .vectors size: 1024 bytes +Used Flash size : 186524 bytes + .text : 146944 bytes + .rodata : 39580 bytes +Total image size: 283036 bytes (.bin may be padded larger) Per-file contributions to ELF file: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - lib_a-vfprintf.o 0 0 0 0 0 14193 756 14949 - lib_a-svfprintf.o 0 0 0 0 0 13834 756 14590 - lib_a-svfiprintf.o 0 0 0 0 0 9642 1210 10852 - lib_a-vfiprintf.o 0 0 0 0 0 9933 738 10671 - nd6.o 8 1027 0 0 0 8427 136 9598 - tcp_in.o 0 54 0 0 0 8127 916 9097 - tasks.o 20 700 0 5667 0 0 503 6890 - tcp_out.o 0 0 0 0 0 5060 1124 6184 - sockets.o 0 728 0 0 0 4627 824 6179 - tcp.o 4 23 0 0 0 4290 1384 5701 - api_msg.o 0 0 0 0 0 3763 1366 5129 - dhcp.o 0 8 0 0 0 3456 1401 4865 - panic.o 2579 5 0 2145 0 0 0 4729 - esp_err_to_name.o 0 0 0 0 0 50 4091 4141 - unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 - pbuf.o 0 1 0 0 0 2453 1161 3615 - portasm.o 3084 0 0 480 0 0 0 3564 - lib_a-dtoa.o 0 0 0 0 0 3522 13 3535 - etharp.o 0 241 0 0 0 2618 658 3517 - ip6.o 0 0 0 0 0 3212 124 3336 - dns.o 0 1292 0 0 0 1809 206 3307 - spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 - udp.o 2 4 0 0 0 3020 216 3242 - intr_alloc.o 8 22 0 726 0 1749 710 3215 - multi_heap.o 857 0 0 2217 0 0 0 3074 - queue.o 8 56 0 2569 0 0 369 3002 - flash_ops.o 32 41 0 2352 0 99 0 2524 - unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 - rtc_clk.o 660 8 0 1794 0 0 0 2462 - lib_a-mprec.o 0 0 0 0 0 2134 296 2430 - vfs.o 192 40 0 0 0 1995 132 2359 - ip6_frag.o 0 6 0 0 0 1905 442 2353 - api_lib.o 0 0 0 0 0 1425 919 2344 - igmp.o 0 12 0 0 0 1604 707 2323 - dbg_stubs.o 0 2072 0 32 0 100 0 2204 - vfs_uart.o 40 63 0 0 0 1775 271 2149 - unity_platform.o 0 13 0 0 0 1511 600 2124 - esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 - rtc_periph.o 0 0 0 0 0 0 2080 2080 - flash_mmap.o 0 296 0 1298 0 124 327 2045 - heap_caps.o 4 0 0 1195 0 188 593 1980 - eh_personality.o 0 0 0 0 0 1561 384 1945 - ip4.o 0 6 0 0 0 1664 139 1809 - netif.o 0 241 0 0 0 1239 287 1767 - xtensa_vectors.o 8 0 0 1697 0 0 36 1741 - cpu_start.o 0 1 0 806 0 277 486 1570 - clk.o 0 0 0 67 0 581 893 1541 - timers.o 8 56 0 1149 0 0 233 1446 - sys_arch.o 0 8 0 0 0 1216 222 1446 - multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 - heap_caps_init.o 0 4 0 0 0 1030 387 1421 - mld6.o 0 4 0 0 0 1334 0 1338 - cache_utils.o 4 14 0 836 0 81 390 1325 - raw.o 0 4 0 0 0 1087 223 1314 - esp_timer.o 8 20 0 702 0 429 142 1301 - log.o 8 268 0 456 0 396 166 1294 - system_api.o 0 8 0 589 0 0 662 1259 - soc_memory_layout.o 0 0 0 0 0 0 1239 1239 - icmp.o 0 0 0 0 0 769 371 1140 - xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 - port.o 0 16 0 617 0 0 369 1002 - pthread.o 8 8 0 174 0 298 512 1000 - icmp6.o 0 0 0 0 0 863 127 990 - rtc_init.o 0 0 0 980 0 0 0 980 - unity.o 0 108 0 0 0 767 90 965 - rtc_time.o 0 0 0 803 0 0 137 940 - dport_access.o 8 40 0 539 0 189 129 905 - lib_a-fseeko.o 0 0 0 0 0 862 0 862 - time.o 0 32 0 139 0 691 0 862 - tcpip.o 0 16 0 0 0 644 191 851 - esp_ota_ops.o 0 0 0 0 0 123 717 840 - periph_ctrl.o 8 0 0 0 0 520 256 784 - timers.o 0 12 0 0 0 638 131 781 - partition.o 0 8 0 0 0 582 141 731 - locks.o 8 0 0 552 0 0 84 644 - ipc.o 0 36 0 159 0 329 104 628 - tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 - pthread_local_storage.o 8 4 0 0 0 476 126 614 - inet_chksum.o 0 0 0 0 0 580 0 580 - crosscore_int.o 8 8 0 204 0 126 148 494 - netbuf.o 0 0 0 0 0 154 326 480 - vfs_lwip.o 0 0 0 0 0 307 155 462 - syscall_table.o 144 240 0 0 0 67 0 451 - timer.o 16 0 0 0 0 112 281 409 - int_wdt.o 0 1 0 87 0 301 0 389 - eh_globals.o 0 16 0 0 0 149 193 358 - brownout.o 0 0 0 0 0 145 191 336 - freertos_hooks.o 8 128 0 43 0 137 0 316 - windowspill_asm.o 0 0 0 311 0 0 0 311 - cpu_util.o 0 0 0 310 0 0 0 310 - rtc_module.o 8 8 0 0 0 291 0 307 - xtensa_context.o 0 0 0 299 0 0 0 299 - eh_terminate.o 0 0 0 0 0 117 141 258 - ethernet.o 0 0 0 0 0 244 12 256 - lib_a-puts.o 0 0 0 0 0 182 60 242 -dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 - lib_a-reent.o 0 0 0 0 0 232 0 232 - lib_a-fopen.o 0 0 0 0 0 228 0 228 - dhcpserver.o 0 4 0 0 0 203 0 207 - test_utils.o 0 0 0 0 0 38 140 178 - lib_a-sprintf.o 0 0 0 0 0 167 0 167 - cache_err_int.o 0 0 0 56 0 98 0 154 - list.o 0 0 0 142 0 0 0 142 - xtensa_intr.o 0 0 0 104 0 0 35 139 - syscalls.o 0 0 0 94 0 45 0 139 - si_class_type_info.o 0 0 0 0 0 0 136 136 - lib_a-assert.o 0 0 0 0 0 68 60 128 - lib_a-flags.o 0 0 0 0 0 127 0 127 - lib_a-printf.o 0 0 0 0 0 116 0 116 - ip4_addr.o 0 0 0 0 0 72 40 112 - class_type_info.o 0 0 0 0 0 0 112 112 - lib_a-s_frexp.o 0 0 0 0 0 110 0 110 - ip.o 0 60 0 0 0 50 0 110 - memp.o 0 0 0 0 0 0 108 108 - lib2funcs.o 0 0 0 104 0 0 0 104 - lib_a-vprintf.o 0 0 0 0 0 94 0 94 - lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 - def.o 0 0 0 0 0 91 0 91 - lib_a-fiprintf.o 0 0 0 0 0 84 0 84 - hw_random.o 0 4 0 74 0 0 0 78 - stack_check.o 0 4 0 0 0 32 42 78 - clock.o 0 0 0 72 0 0 0 72 - reent_init.o 0 0 0 68 0 0 2 70 - app_main.o 0 0 0 0 0 53 10 63 -state_asm--restore_extra 0 0 0 62 0 0 0 62 -state_asm--save_extra_nw 0 0 0 62 0 0 0 62 - uart.o 8 12 0 0 0 38 0 58 - new_opv.o 0 0 0 0 0 0 56 56 -xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 - lib_a-fseek.o 0 0 0 0 0 45 0 45 - _divdi3.o 0 0 0 0 0 0 40 40 - _moddi3.o 0 0 0 0 0 0 40 40 - _udivdi3.o 0 0 0 0 0 0 40 40 - _umoddi3.o 0 0 0 0 0 0 40 40 - new_op.o 0 0 0 0 0 0 40 40 - xtensa_init.o 0 4 0 32 0 0 0 36 - interrupts--intlevel.o 0 0 0 0 0 0 32 32 - init.o 0 0 0 0 0 27 0 27 - wifi_init.o 0 0 0 0 0 17 9 26 - ip6_addr.o 0 0 0 0 0 0 20 20 - lib_a-errno.o 0 0 0 0 0 10 0 10 - int_asm--set_intclear.o 0 0 0 8 0 0 0 8 - eri.o 0 0 0 8 0 0 0 8 - cxx_exception_stubs.o 0 0 0 0 0 6 0 6 - cxx_guards.o 0 0 0 0 0 5 0 5 - FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 - eh_term_handler.o 4 0 0 0 0 0 0 4 - eh_unex_handler.o 4 0 0 0 0 0 0 4 - bootloader_flash.o 0 0 0 0 0 0 0 0 - bootloader_sha.o 0 0 0 0 0 0 0 0 - esp_image_format.o 0 0 0 0 0 0 0 0 - lib_a-fputs.o 0 0 0 0 0 0 0 0 - lib_a-snprintf.o 0 0 0 0 0 0 0 0 - lib_a-strerror.o 0 0 0 0 0 0 0 0 - lib_a-sysgettod.o 0 0 0 0 0 0 0 0 - lib_a-u_strerr.o 0 0 0 0 0 0 0 0 - lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 - lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 - coexist_api.o 0 0 0 0 0 0 0 0 - coexist_arbit.o 0 0 0 0 0 0 0 0 - coexist_core.o 0 0 0 0 0 0 0 0 - coexist_dbg.o 0 0 0 0 0 0 0 0 - coexist_hw.o 0 0 0 0 0 0 0 0 - coexist_param.o 0 0 0 0 0 0 0 0 - coexist_timer.o 0 0 0 0 0 0 0 0 - misc_nvs.o 0 0 0 0 0 0 0 0 - gpio.o 0 0 0 0 0 0 0 0 - ets_timer_legacy.o 0 0 0 0 0 0 0 0 -event_default_handlers.o 0 0 0 0 0 0 0 0 - event_loop.o 0 0 0 0 0 0 0 0 - lib_printf.o 0 0 0 0 0 0 0 0 - phy_init.o 0 0 0 0 0 0 0 0 - sha.o 0 0 0 0 0 0 0 0 - wifi_os_adapter.o 0 0 0 0 0 0 0 0 - emac_dev.o 0 0 0 0 0 0 0 0 - emac_main.o 0 0 0 0 0 0 0 0 - event_groups.o 0 0 0 0 0 0 0 0 - ringbuf.o 0 0 0 0 0 0 0 0 - _addsubdf3.o 0 0 0 0 0 0 0 0 - _cmpdf2.o 0 0 0 0 0 0 0 0 - _divdf3.o 0 0 0 0 0 0 0 0 - _divsf3.o 0 0 0 0 0 0 0 0 - _extendsfdf2.o 0 0 0 0 0 0 0 0 - _fixdfsi.o 0 0 0 0 0 0 0 0 - _floatdidf.o 0 0 0 0 0 0 0 0 - _floatdisf.o 0 0 0 0 0 0 0 0 - _floatsidf.o 0 0 0 0 0 0 0 0 - _muldf3.o 0 0 0 0 0 0 0 0 - _popcountsi2.o 0 0 0 0 0 0 0 0 - ethernetif.o 0 0 0 0 0 0 0 0 - ethip6.o 0 0 0 0 0 0 0 0 - wlanif.o 0 0 0 0 0 0 0 0 - esp_sha256.o 0 0 0 0 0 0 0 0 - mesh.o 0 0 0 0 0 0 0 0 - mesh_common.o 0 0 0 0 0 0 0 0 - mesh_config.o 0 0 0 0 0 0 0 0 - mesh_main.o 0 0 0 0 0 0 0 0 - mesh_parent.o 0 0 0 0 0 0 0 0 - mesh_route.o 0 0 0 0 0 0 0 0 - mesh_schedule.o 0 0 0 0 0 0 0 0 - mesh_timer.o 0 0 0 0 0 0 0 0 - mesh_utilities.o 0 0 0 0 0 0 0 0 - mesh_wifi.o 0 0 0 0 0 0 0 0 - ieee80211.o 0 0 0 0 0 0 0 0 - ieee80211_action.o 0 0 0 0 0 0 0 0 -ieee80211_action_vendor. 0 0 0 0 0 0 0 0 - ieee80211_api.o 0 0 0 0 0 0 0 0 - ieee80211_crypto.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 - ieee80211_debug.o 0 0 0 0 0 0 0 0 - ieee80211_ets.o 0 0 0 0 0 0 0 0 - ieee80211_hostap.o 0 0 0 0 0 0 0 0 - ieee80211_ht.o 0 0 0 0 0 0 0 0 - ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 - ieee80211_input.o 0 0 0 0 0 0 0 0 - ieee80211_ioctl.o 0 0 0 0 0 0 0 0 - ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 - ieee80211_misc.o 0 0 0 0 0 0 0 0 - ieee80211_nvs.o 0 0 0 0 0 0 0 0 - ieee80211_output.o 0 0 0 0 0 0 0 0 - ieee80211_phy.o 0 0 0 0 0 0 0 0 - ieee80211_power.o 0 0 0 0 0 0 0 0 - ieee80211_proto.o 0 0 0 0 0 0 0 0 - ieee80211_regdomain.o 0 0 0 0 0 0 0 0 - ieee80211_rfid.o 0 0 0 0 0 0 0 0 - ieee80211_scan.o 0 0 0 0 0 0 0 0 - ieee80211_sta.o 0 0 0 0 0 0 0 0 - ieee80211_timer.o 0 0 0 0 0 0 0 0 - wl_chm.o 0 0 0 0 0 0 0 0 - wl_cnx.o 0 0 0 0 0 0 0 0 - nvs_api.o 0 0 0 0 0 0 0 0 - nvs_item_hash_list.o 0 0 0 0 0 0 0 0 - nvs_page.o 0 0 0 0 0 0 0 0 - nvs_pagemanager.o 0 0 0 0 0 0 0 0 - nvs_storage.o 0 0 0 0 0 0 0 0 - nvs_types.o 0 0 0 0 0 0 0 0 - phy.o 0 0 0 0 0 0 0 0 - phy_chip_v7.o 0 0 0 0 0 0 0 0 - phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 - phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 - esf_buf.o 0 0 0 0 0 0 0 0 - if_hwctrl.o 0 0 0 0 0 0 0 0 - lmac.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 - pp.o 0 0 0 0 0 0 0 0 - pp_debug.o 0 0 0 0 0 0 0 0 - pp_timer.o 0 0 0 0 0 0 0 0 - rate_control.o 0 0 0 0 0 0 0 0 - trc.o 0 0 0 0 0 0 0 0 - wdev.o 0 0 0 0 0 0 0 0 - bt_bb.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - rtc.o 0 0 0 0 0 0 0 0 - rtc_analog.o 0 0 0 0 0 0 0 0 - smartconfig_ack.o 0 0 0 0 0 0 0 0 - gpio_periph.o 0 0 0 0 0 0 0 0 - rtc_sleep.o 0 0 0 0 0 0 0 0 - bad_alloc.o 0 0 0 0 0 0 0 0 - del_op.o 0 0 0 0 0 0 0 0 - del_opv.o 0 0 0 0 0 0 0 0 - eh_exception.o 0 0 0 0 0 0 0 0 - new_handler.o 0 0 0 0 0 0 0 0 - pure.o 0 0 0 0 0 0 0 0 - tinfo.o 0 0 0 0 0 0 0 0 - ap_config.o 0 0 0 0 0 0 0 0 - common.o 0 0 0 0 0 0 0 0 - wpa.o 0 0 0 0 0 0 0 0 - wpa_auth.o 0 0 0 0 0 0 0 0 - wpa_auth_ie.o 0 0 0 0 0 0 0 0 - wpa_common.o 0 0 0 0 0 0 0 0 - wpa_debug.o 0 0 0 0 0 0 0 0 - wpa_ie.o 0 0 0 0 0 0 0 0 - wpa_main.o 0 0 0 0 0 0 0 0 - wpabuf.o 0 0 0 0 0 0 0 0 - wpas_glue.o 0 0 0 0 0 0 0 0 - wpa2_internal.o 0 0 0 0 0 0 0 0 - os_xtensa.o 0 0 0 0 0 0 0 0 - wps_internal.o 0 0 0 0 0 0 0 0 + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + lib_a-vfprintf.o 0 0 0 0 0 14193 704 14897 + lib_a-svfprintf.o 0 0 0 0 0 13834 756 14590 + lib_a-svfiprintf.o 0 0 0 0 0 9642 1176 10818 + lib_a-vfiprintf.o 0 0 0 0 0 9933 704 10637 + tcp_in.o 0 54 0 0 54 8127 916 9043 + nd6.o 8 1027 0 0 1035 8427 136 8571 + tasks.o 20 700 5667 0 6387 0 503 6190 + tcp_out.o 0 0 0 0 0 5060 1124 6184 + tcp.o 4 23 0 0 27 4290 1384 5678 + sockets.o 0 728 0 0 728 4627 824 5451 + api_msg.o 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 8 3456 1401 4857 + panic.o 2579 5 2145 0 4729 0 0 4724 + esp_err_to_name.o 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 24 3316 404 3724 + pbuf.o 0 1 0 0 1 2453 1161 3614 + portasm.o 3084 0 480 0 3564 0 0 3564 + lib_a-dtoa.o 0 0 0 0 0 3522 13 3535 + ip6.o 0 0 0 0 0 3212 124 3336 + spi_flash_rom_patch.o 0 0 2518 0 2518 0 766 3284 + etharp.o 0 241 0 0 241 2618 658 3276 + udp.o 2 4 0 0 6 3020 216 3238 + intr_alloc.o 8 22 726 0 756 1749 710 3193 + multi_heap.o 857 0 2217 0 3074 0 0 3074 + queue.o 8 56 2569 0 2633 0 369 2946 + unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 + flash_ops.o 32 41 2352 0 2425 99 0 2483 + rtc_clk.o 660 8 1794 0 2462 0 0 2454 + lib_a-mprec.o 0 0 0 0 0 2134 296 2430 + ip6_frag.o 0 6 0 0 6 1905 442 2347 + api_lib.o 0 0 0 0 0 1425 919 2344 + vfs.o 192 40 0 0 232 1995 132 2319 + igmp.o 0 12 0 0 12 1604 707 2311 + unity_platform.o 0 13 0 0 13 1511 600 2111 + vfs_uart.o 40 63 0 0 103 1775 271 2086 + esp_timer_esp32.o 8 26 1295 0 1329 254 526 2083 + rtc_periph.o 0 0 0 0 0 0 2080 2080 + dns.o 0 1292 0 0 1292 1809 206 2015 + heap_caps.o 4 0 1195 0 1199 188 593 1980 + eh_personality.o 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 6 1664 139 1803 + flash_mmap.o 0 296 1298 0 1594 124 327 1749 + xtensa_vectors.o 8 0 1272 425 1705 0 36 1741 + cpu_start.o 0 1 806 0 807 277 486 1569 + clk.o 0 0 67 0 67 581 893 1541 + netif.o 0 241 0 0 241 1239 287 1526 + sys_arch.o 0 8 0 0 8 1216 222 1438 + multi_heap_poisoning.o 470 0 964 0 1434 0 0 1434 + heap_caps_init.o 0 4 0 0 4 1030 387 1417 + timers.o 8 56 1149 0 1213 0 233 1390 + mld6.o 0 4 0 0 4 1334 0 1334 + cache_utils.o 4 14 836 0 854 81 390 1311 + raw.o 0 4 0 0 4 1087 223 1310 + esp_timer.o 8 20 702 0 730 429 142 1281 + system_api.o 0 8 589 0 597 0 662 1251 + soc_memory_layout.o 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 51 0 1075 0 0 1075 + log.o 8 268 456 0 732 396 166 1026 + pthread.o 8 8 174 0 190 298 512 992 + icmp6.o 0 0 0 0 0 863 127 990 + port.o 0 16 617 0 633 0 369 986 + rtc_init.o 0 0 980 0 980 0 0 980 + rtc_time.o 0 0 803 0 803 0 137 940 + dport_access.o 8 40 539 0 587 189 129 865 + lib_a-fseeko.o 0 0 0 0 0 862 0 862 + unity.o 0 108 0 0 108 767 90 857 + esp_ota_ops.o 0 0 0 0 0 123 717 840 + tcpip.o 0 16 0 0 16 644 191 835 + time.o 0 32 139 0 171 691 0 830 + periph_ctrl.o 8 0 0 0 8 520 256 784 + timers.o 0 12 0 0 12 638 131 769 + partition.o 0 8 0 0 8 582 141 723 + locks.o 8 0 552 0 560 0 84 644 + pthread_local_storage.o 8 4 0 0 12 476 126 610 + ipc.o 0 36 159 0 195 329 104 592 + inet_chksum.o 0 0 0 0 0 580 0 580 + tcpip_adapter_lwip.o 0 81 0 0 81 180 359 539 + crosscore_int.o 8 8 204 0 220 126 148 486 + netbuf.o 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 307 155 462 + timer.o 16 0 0 0 16 112 281 409 + int_wdt.o 0 1 87 0 88 301 0 388 + eh_globals.o 0 16 0 0 16 149 193 342 + brownout.o 0 0 0 0 0 145 191 336 + windowspill_asm.o 0 0 311 0 311 0 0 311 + cpu_util.o 0 0 310 0 310 0 0 310 + rtc_module.o 8 8 0 0 16 291 0 299 + xtensa_context.o 0 0 299 0 299 0 0 299 + eh_terminate.o 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 244 12 256 +dport_panic_highint_hdl. 8 0 234 0 242 0 0 242 + lib_a-reent.o 0 0 0 0 0 232 0 232 + lib_a-fopen.o 0 0 0 0 0 228 0 228 + syscall_table.o 144 240 0 0 384 67 0 211 + dhcpserver.o 0 4 0 0 4 203 0 203 + freertos_hooks.o 8 128 43 0 179 137 0 188 + lib_a-puts.o 0 0 0 0 0 182 0 182 + test_utils.o 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 56 0 56 98 0 154 + list.o 0 0 142 0 142 0 0 142 + xtensa_intr.o 0 0 104 0 104 0 35 139 + syscalls.o 0 0 94 0 94 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 136 136 + dbg_stubs.o 0 2072 32 0 2104 100 0 132 + lib_a-assert.o 0 0 0 0 0 68 60 128 + lib_a-flags.o 0 0 0 0 0 127 0 127 + lib_a-printf.o 0 0 0 0 0 116 0 116 + ip4_addr.o 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 112 112 + lib_a-s_frexp.o 0 0 0 0 0 110 0 110 + memp.o 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 104 0 104 0 0 104 + lib_a-vprintf.o 0 0 0 0 0 94 0 94 + lib_a-s_fpclassify.o 0 0 92 0 92 0 0 92 + def.o 0 0 0 0 0 91 0 91 + lib_a-fiprintf.o 0 0 0 0 0 84 0 84 + hw_random.o 0 4 74 0 78 0 0 74 + stack_check.o 0 4 0 0 4 32 42 74 + clock.o 0 0 72 0 72 0 0 72 + reent_init.o 0 0 68 0 68 0 2 70 + app_main.o 0 0 0 0 0 53 10 63 +state_asm--restore_extra 0 0 62 0 62 0 0 62 +state_asm--save_extra_nw 0 0 62 0 62 0 0 62 + new_opv.o 0 0 0 0 0 0 56 56 + ip.o 0 60 0 0 60 50 0 50 + uart.o 8 12 0 0 20 38 0 46 +xtensa_vector_defaults.o 0 0 46 0 46 0 0 46 + lib_a-fseek.o 0 0 0 0 0 45 0 45 + _divdi3.o 0 0 0 0 0 0 40 40 + _moddi3.o 0 0 0 0 0 0 40 40 + _udivdi3.o 0 0 0 0 0 0 40 40 + _umoddi3.o 0 0 0 0 0 0 40 40 + new_op.o 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 32 0 36 0 0 32 + interrupts--intlevel.o 0 0 0 0 0 0 32 32 + init.o 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 20 20 + lib_a-errno.o 0 0 0 0 0 10 0 10 + int_asm--set_intclear.o 0 0 8 0 8 0 0 8 + eri.o 0 0 8 0 8 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 4 0 0 4 + eh_term_handler.o 4 0 0 0 4 0 0 4 + eh_unex_handler.o 4 0 0 0 4 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 + lib_a-fputs.o 0 0 0 0 0 0 0 0 + lib_a-snprintf.o 0 0 0 0 0 0 0 0 + lib_a-strerror.o 0 0 0 0 0 0 0 0 + lib_a-sysgettod.o 0 0 0 0 0 0 0 0 + lib_a-u_strerr.o 0 0 0 0 0 0 0 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 + _addsubdf3.o 0 0 0 0 0 0 0 0 + _cmpdf2.o 0 0 0 0 0 0 0 0 + _divdf3.o 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 + _fixdfsi.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 + _floatsidf.o 0 0 0 0 0 0 0 0 + _muldf3.o 0 0 0 0 0 0 0 0 + _popcountsi2.o 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 *** Running idf_size.py --archive_details... Total sizes: - DRAM .data size: 9324 bytes - DRAM .bss size: 8296 bytes -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) - Flash code: 146944 bytes - Flash rodata: 39580 bytes -Total image size:~ 234780 bytes (.bin may be padded larger) -Symbols within the archive: libdriver.a (Not all symbols may be reported) - -Symbols from section: .dram0.bss -p_uart_obj(12) s_rtc_isr_handle(4) s_rtc_isr_handler_list(4) -Section total: 20 - -Symbols from section: .dram0.data -timer_spinlock(16) periph_spinlock(8) s_rtc_isr_handler_list_lock(8) uart_selectlock(8) -Section total: 40 - -Symbols from section: .flash.rodata -str1.4(249) get_clk_en_mask(128) get_rst_en_mask(128) __FUNCTION__$5441(24) TG(8) -Section total: 537 - -Symbols from section: .flash.text -get_clk_en_mask(211) get_rst_en_mask(157) timer_group_intr_enable(112) rtc_isr(86) periph_module_enable(78) rtc_isr_ensure_installed(75) rtc_gpio_force_hold_dis_all(65) rtc_isr_register(65) is_wifi_clk_peripheral(28) uart_set_select_notif_callback(26) get_rst_en_reg(25) get_clk_en_reg(21) uart_get_selectlock(12) -Section total: 961 - -Symbols from section: .iram0.text -Section total: 0 - -Symbols from section: .iram0.vectors -Section total: 0 - -Symbols from section: .noinit -Section total: 0 - -*** -Running idf_size.py diff with bootloader... - MAP file: app.map - MAP file: bootloader.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 4 +9320 - DRAM .bss size: 8296 bytes 48 +8248 - DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) - Flash code: 146944 bytes 0 +146944 - Flash rodata: 39580 bytes 0 +39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 11609 +223171 - -*** -Running idf_size.py diff with itself... - MAP file: app.map - MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 9324 - DRAM .bss size: 8296 bytes 8296 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) - Flash code: 146944 bytes 146944 - Flash rodata: 39580 bytes 39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 234780 - -*** -Running idf_size.py diff with another app... - MAP file: app.map - MAP file: app2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 8580 +744 - DRAM .bss size: 8296 bytes 2024 +6272 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) - Flash code: 146944 bytes 77191 +69753 - Flash rodata: 39580 bytes 22360 +17220 -Total image size:~ 234780 bytes (.bin may be padded larger) 147087 +87693 - -*** -Running idf_size.py diff with app in reverse order... - MAP file: app2.map - MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 8580 bytes 9324 -744 - DRAM .bss size: 2024 bytes 8296 -6272 -Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) -Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) - Flash code: 77191 bytes 146944 -69753 - Flash rodata: 22360 bytes 39580 -17220 -Total image size:~ 147087 bytes (.bin may be padded larger) 234780 -87693 - -*** -Running idf_size.py diff --archives with bootloader... - MAP file: app.map - MAP file: bootloader.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 4 +9320 - DRAM .bss size: 8296 bytes 48 +8248 - DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) - Flash code: 146944 bytes 0 +146944 - Flash rodata: 39580 bytes 0 +39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 11609 +223171 -Per-archive contributions to ELF file: - Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - libc.a| | | | | | | | | | | | | | | | 55583| | +55583| 3889| | +3889| 59472| | +59472 - libspi_flash.a| 36| | +36| 359| | +359| | | | 7004| | +7004| | | | 886| | +886| 1624| | +1624| 9909| | +9909 - libsoc.a| 660| | +660| 8| 4| +4| | | | 3887| | +3887| | | | | | | 3456| | +3456| 8011| 4| +8007 - libgcc.a| 4| | +4| 20| | +20| | | | 104| | +104| | | | 5488| | +5488| 888| | +888| 6504| | +6504 - liblog.a| 8| | +8| 268| | +268| | | | 456| | +456| | | | 396| | +396| 166| | +166| 1294| | +1294 - libmain.a| | | | | | | | | | | | | | | | 53| | +53| 10| | +10| 63| | +63 - libbootloader_support.a| | 4| -4| | 38| -38| | | | | | | | | | | | | | | | | 42| -42 -The following entries are present in only: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - liblwip.a 14 3751 0 0 0 66978 13936 84679 - libesp32.a 2635 2375 0 7758 0 4814 8133 25715 - libfreertos.a 4156 832 0 12853 0 0 1545 19386 - libheap.a 1331 4 0 4376 0 1218 980 7909 - libvfs.a 232 103 0 0 0 3770 403 4508 - libunity.a 0 121 0 0 0 2316 830 3267 - libstdc++.a 8 16 0 0 0 1827 1062 2913 - libnewlib.a 152 272 0 853 0 803 86 2166 - libpthread.a 16 12 0 174 0 774 638 1614 - libdriver.a 40 20 0 0 0 961 537 1558 - libapp_update.a 0 0 0 0 0 123 717 840 - libtcpip_adapter.a 0 81 0 0 0 180 359 620 - libhal.a 0 0 0 515 0 0 32 547 - libm.a 0 0 0 92 0 0 0 92 - libcxx.a 0 0 0 0 0 11 0 11 -libxtensa-debug-module.a 0 0 0 8 0 0 0 8 - libcoexist.a 0 0 0 0 0 0 0 0 - libcore.a 0 0 0 0 0 0 0 0 - libethernet.a 0 0 0 0 0 0 0 0 - libmbedtls.a 0 0 0 0 0 0 0 0 - libmesh.a 0 0 0 0 0 0 0 0 - libnet80211.a 0 0 0 0 0 0 0 0 - libnvs_flash.a 0 0 0 0 0 0 0 0 - libphy.a 0 0 0 0 0 0 0 0 - libpp.a 0 0 0 0 0 0 0 0 - librtc.a 0 0 0 0 0 0 0 0 - libsmartconfig_ack.a 0 0 0 0 0 0 0 0 - libwpa.a 0 0 0 0 0 0 0 0 - libwpa2.a 0 0 0 0 0 0 0 0 - libwpa_supplicant.a 0 0 0 0 0 0 0 0 - libwps.a 0 0 0 0 0 0 0 0 -The following entries are present in only: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - (exe) 0 0 0 0 0 0 0 0 - libsoc_esp32.a 0 0 0 0 0 0 0 0 - -*** -Running idf_size.py diff --archives with itself... - MAP file: app.map - MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 9324 - DRAM .bss size: 8296 bytes 8296 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) - Flash code: 146944 bytes 146944 - Flash rodata: 39580 bytes 39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 234780 -Per-archive contributions to ELF file: - Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - liblwip.a| 14| 14| | 3751| 3751| | | | | | | | | | | 66978| 66978| | 13936| 13936| | 84679| 84679| - libc.a| | | | | | | | | | | | | | | | 55583| 55583| | 3889| 3889| | 59472| 59472| - libesp32.a| 2635| 2635| | 2375| 2375| | | | | 7758| 7758| | | | | 4814| 4814| | 8133| 8133| | 25715| 25715| - libfreertos.a| 4156| 4156| | 832| 832| | | | | 12853| 12853| | | | | | | | 1545| 1545| | 19386| 19386| - libspi_flash.a| 36| 36| | 359| 359| | | | | 7004| 7004| | | | | 886| 886| | 1624| 1624| | 9909| 9909| - libsoc.a| 660| 660| | 8| 8| | | | | 3887| 3887| | | | | | | | 3456| 3456| | 8011| 8011| - libheap.a| 1331| 1331| | 4| 4| | | | | 4376| 4376| | | | | 1218| 1218| | 980| 980| | 7909| 7909| - libgcc.a| 4| 4| | 20| 20| | | | | 104| 104| | | | | 5488| 5488| | 888| 888| | 6504| 6504| - libvfs.a| 232| 232| | 103| 103| | | | | | | | | | | 3770| 3770| | 403| 403| | 4508| 4508| - libunity.a| | | | 121| 121| | | | | | | | | | | 2316| 2316| | 830| 830| | 3267| 3267| - libstdc++.a| 8| 8| | 16| 16| | | | | | | | | | | 1827| 1827| | 1062| 1062| | 2913| 2913| - libnewlib.a| 152| 152| | 272| 272| | | | | 853| 853| | | | | 803| 803| | 86| 86| | 2166| 2166| - libpthread.a| 16| 16| | 12| 12| | | | | 174| 174| | | | | 774| 774| | 638| 638| | 1614| 1614| - libdriver.a| 40| 40| | 20| 20| | | | | | | | | | | 961| 961| | 537| 537| | 1558| 1558| - liblog.a| 8| 8| | 268| 268| | | | | 456| 456| | | | | 396| 396| | 166| 166| | 1294| 1294| - libapp_update.a| | | | | | | | | | | | | | | | 123| 123| | 717| 717| | 840| 840| - libtcpip_adapter.a| | | | 81| 81| | | | | | | | | | | 180| 180| | 359| 359| | 620| 620| - libhal.a| | | | | | | | | | 515| 515| | | | | | | | 32| 32| | 547| 547| - libm.a| | | | | | | | | | 92| 92| | | | | | | | | | | 92| 92| - libmain.a| | | | | | | | | | | | | | | | 53| 53| | 10| 10| | 63| 63| - libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| -libxtensa-debug-module.a| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| - libbootloader_support.a| | | | | | | | | | | | | | | | | | | | | | | | - libcoexist.a| | | | | | | | | | | | | | | | | | | | | | | | - libcore.a| | | | | | | | | | | | | | | | | | | | | | | | - libethernet.a| | | | | | | | | | | | | | | | | | | | | | | | - libmbedtls.a| | | | | | | | | | | | | | | | | | | | | | | | - libmesh.a| | | | | | | | | | | | | | | | | | | | | | | | - libnet80211.a| | | | | | | | | | | | | | | | | | | | | | | | - libnvs_flash.a| | | | | | | | | | | | | | | | | | | | | | | | - libphy.a| | | | | | | | | | | | | | | | | | | | | | | | - libpp.a| | | | | | | | | | | | | | | | | | | | | | | | - librtc.a| | | | | | | | | | | | | | | | | | | | | | | | - libsmartconfig_ack.a| | | | | | | | | | | | | | | | | | | | | | | | - libwpa.a| | | | | | | | | | | | | | | | | | | | | | | | - libwpa2.a| | | | | | | | | | | | | | | | | | | | | | | | - libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | - libwps.a| | | | | | | | | | | | | | | | | | | | | | | | - -*** -Running idf_size.py diff --archives with another app... - MAP file: app.map - MAP file: app2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 8580 +744 - DRAM .bss size: 8296 bytes 2024 +6272 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) - Flash code: 146944 bytes 77191 +69753 - Flash rodata: 39580 bytes 22360 +17220 -Total image size:~ 234780 bytes (.bin may be padded larger) 147087 +87693 -Per-archive contributions to ELF file: - Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - libc.a| | 364| -364| | | | | | | | | | | | | 55583| 54704| +879| 3889| 3883| +6| 59472| 58951| +521 - libesp32.a| 2635| 2118| +517| 2375| 81| +2294| | | | 7758| 5462| +2296| | | | 4814| 4511| +303| 8133| 2751| +5382| 25715| 14923| +10792 - libfreertos.a| 4156| 4140| +16| 832| 792| +40| | | | 12853| 12884| -31| | | | | | | 1545| 1721| -176| 19386| 19537| -151 - libspi_flash.a| 36| 779| -743| 359| 294| +65| | | | 7004| 4896| +2108| | | | 886| 1135| -249| 1624| 1412| +212| 9909| 8516| +1393 - libsoc.a| 660| 208| +452| 8| 4| +4| | | | 3887| 6790| -2903| | | | | 1763| -1763| 3456| 1956| +1500| 8011| 10721| -2710 - libheap.a| 1331| 304| +1027| 4| 4| | | | | 4376| 3129| +1247| | | | 1218| 884| +334| 980| 741| +239| 7909| 5062| +2847 - libgcc.a| 4| | +4| 20| | +20| | | | 104| | +104| | | | 5488| | +5488| 888| 160| +728| 6504| 160| +6344 - libvfs.a| 232| 308| -76| 103| 48| +55| | | | | | | | | | 3770| 5650| -1880| 403| 915| -512| 4508| 6921| -2413 - libnewlib.a| 152| 152| | 272| 272| | | | | 853| 820| +33| | | | 803| 868| -65| 86| 84| +2| 2166| 2196| -30 - libpthread.a| 16| 8| +8| 12| 12| | | | | 174| | +174| | | | 774| 264| +510| 638| | +638| 1614| 284| +1330 - libdriver.a| 40| 112| -72| 20| 20| | | | | | | | | | | 961| 4272| -3311| 537| 1910| -1373| 1558| 6314| -4756 - liblog.a| 8| 8| | 268| 272| -4| | | | 456| 222| +234| | | | 396| 484| -88| 166| 147| +19| 1294| 1133| +161 - libapp_update.a| | | | | 4| -4| | | | | 109| -109| | | | 123| 159| -36| 717| 470| +247| 840| 742| +98 - libhal.a| | | | | | | | | | 515| 447| +68| | | | | | | 32| 32| | 547| 479| +68 - libmain.a| | | | | | | | | | | | | | | | 53| 72| -19| 10| 39| -29| 63| 111| -48 - libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| - libbootloader_support.a| | | | | | | | | | | 1028| -1028| | | | | 565| -565| | 20| -20| | 1613| -1613 - libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | -The following entries are present in only: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - liblwip.a 14 3751 0 0 0 66978 13936 84679 - libunity.a 0 121 0 0 0 2316 830 3267 - libstdc++.a 8 16 0 0 0 1827 1062 2913 - libtcpip_adapter.a 0 81 0 0 0 180 359 620 - libm.a 0 0 0 92 0 0 0 92 -libxtensa-debug-module.a 0 0 0 8 0 0 0 8 - libcoexist.a 0 0 0 0 0 0 0 0 - libcore.a 0 0 0 0 0 0 0 0 - libethernet.a 0 0 0 0 0 0 0 0 - libmbedtls.a 0 0 0 0 0 0 0 0 - libmesh.a 0 0 0 0 0 0 0 0 - libnet80211.a 0 0 0 0 0 0 0 0 - libnvs_flash.a 0 0 0 0 0 0 0 0 - libphy.a 0 0 0 0 0 0 0 0 - libpp.a 0 0 0 0 0 0 0 0 - librtc.a 0 0 0 0 0 0 0 0 - libsmartconfig_ack.a 0 0 0 0 0 0 0 0 - libwpa.a 0 0 0 0 0 0 0 0 - libwpa2.a 0 0 0 0 0 0 0 0 - libwps.a 0 0 0 0 0 0 0 0 -The following entries are present in only: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - libesp_common.a 8 184 0 239 0 783 5421 6635 - libesp_timer.a 16 20 0 794 0 723 507 2060 - libesp_ringbuf.a 0 0 0 858 0 0 150 1008 - libxtensa.a 0 0 0 217 0 0 0 217 - libsoc_esp32.a 0 0 0 0 0 0 160 160 - (exe) 0 0 0 3 0 3 12 18 - libefuse.a 0 0 0 0 0 0 0 0 - libmbedcrypto.a 0 0 0 0 0 0 0 0 - -*** -Running idf_size.py diff --archives with app in reverse order... - MAP file: app2.map - MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 8580 bytes 9324 -744 - DRAM .bss size: 2024 bytes 8296 -6272 -Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) -Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) - Flash code: 77191 bytes 146944 -69753 - Flash rodata: 22360 bytes 39580 -17220 -Total image size:~ 147087 bytes (.bin may be padded larger) 234780 -87693 -Per-archive contributions to ELF file: - Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - libc.a| 364| | +364| | | | | | | | | | | | | 54704| 55583| -879| 3883| 3889| -6| 58951| 59472| -521 - libfreertos.a| 4140| 4156| -16| 792| 832| -40| | | | 12884| 12853| +31| | | | | | | 1721| 1545| +176| 19537| 19386| +151 - libesp32.a| 2118| 2635| -517| 81| 2375| -2294| | | | 5462| 7758| -2296| | | | 4511| 4814| -303| 2751| 8133| -5382| 14923| 25715| -10792 - libsoc.a| 208| 660| -452| 4| 8| -4| | | | 6790| 3887| +2903| | | | 1763| | +1763| 1956| 3456| -1500| 10721| 8011| +2710 - libspi_flash.a| 779| 36| +743| 294| 359| -65| | | | 4896| 7004| -2108| | | | 1135| 886| +249| 1412| 1624| -212| 8516| 9909| -1393 - libvfs.a| 308| 232| +76| 48| 103| -55| | | | | | | | | | 5650| 3770| +1880| 915| 403| +512| 6921| 4508| +2413 - libdriver.a| 112| 40| +72| 20| 20| | | | | | | | | | | 4272| 961| +3311| 1910| 537| +1373| 6314| 1558| +4756 - libheap.a| 304| 1331| -1027| 4| 4| | | | | 3129| 4376| -1247| | | | 884| 1218| -334| 741| 980| -239| 5062| 7909| -2847 - libnewlib.a| 152| 152| | 272| 272| | | | | 820| 853| -33| | | | 868| 803| +65| 84| 86| -2| 2196| 2166| +30 - libbootloader_support.a| | | | | | | | | | 1028| | +1028| | | | 565| | +565| 20| | +20| 1613| | +1613 - liblog.a| 8| 8| | 272| 268| +4| | | | 222| 456| -234| | | | 484| 396| +88| 147| 166| -19| 1133| 1294| -161 - libapp_update.a| | | | 4| | +4| | | | 109| | +109| | | | 159| 123| +36| 470| 717| -247| 742| 840| -98 - libhal.a| | | | | | | | | | 447| 515| -68| | | | | | | 32| 32| | 479| 547| -68 - libpthread.a| 8| 16| -8| 12| 12| | | | | | 174| -174| | | | 264| 774| -510| | 638| -638| 284| 1614| -1330 - libgcc.a| | 4| -4| | 20| -20| | | | | 104| -104| | | | | 5488| -5488| 160| 888| -728| 160| 6504| -6344 - libmain.a| | | | | | | | | | | | | | | | 72| 53| +19| 39| 10| +29| 111| 63| +48 - libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| - libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | -The following entries are present in only: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - libesp_common.a 8 184 0 239 0 783 5421 6635 - libesp_timer.a 16 20 0 794 0 723 507 2060 - libesp_ringbuf.a 0 0 0 858 0 0 150 1008 - libxtensa.a 0 0 0 217 0 0 0 217 - libsoc_esp32.a 0 0 0 0 0 0 160 160 - (exe) 0 0 0 3 0 3 12 18 - libefuse.a 0 0 0 0 0 0 0 0 - libmbedcrypto.a 0 0 0 0 0 0 0 0 -The following entries are present in only: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - liblwip.a 14 3751 0 0 0 66978 13936 84679 - libunity.a 0 121 0 0 0 2316 830 3267 - libstdc++.a 8 16 0 0 0 1827 1062 2913 - libtcpip_adapter.a 0 81 0 0 0 180 359 620 - libm.a 0 0 0 92 0 0 0 92 -libxtensa-debug-module.a 0 0 0 8 0 0 0 8 - libcoexist.a 0 0 0 0 0 0 0 0 - libcore.a 0 0 0 0 0 0 0 0 - libethernet.a 0 0 0 0 0 0 0 0 - libmbedtls.a 0 0 0 0 0 0 0 0 - libmesh.a 0 0 0 0 0 0 0 0 - libnet80211.a 0 0 0 0 0 0 0 0 - libnvs_flash.a 0 0 0 0 0 0 0 0 - libphy.a 0 0 0 0 0 0 0 0 - libpp.a 0 0 0 0 0 0 0 0 - librtc.a 0 0 0 0 0 0 0 0 - libsmartconfig_ack.a 0 0 0 0 0 0 0 0 - libwpa.a 0 0 0 0 0 0 0 0 - libwpa2.a 0 0 0 0 0 0 0 0 - libwps.a 0 0 0 0 0 0 0 0 - -*** -Running idf_size.py diff --files with bootloader... - MAP file: app.map - MAP file: bootloader.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 4 +9320 - DRAM .bss size: 8296 bytes 48 +8248 - DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) - Flash code: 146944 bytes 0 +146944 - Flash rodata: 39580 bytes 0 +39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 11609 +223171 -Per-file contributions to ELF file: - Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| | +40| 40| | +40 -The following entries are present in only: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - lib_a-vfprintf.o 0 0 0 0 0 14193 756 14949 - lib_a-svfprintf.o 0 0 0 0 0 13834 756 14590 - lib_a-svfiprintf.o 0 0 0 0 0 9642 1210 10852 - lib_a-vfiprintf.o 0 0 0 0 0 9933 738 10671 - nd6.o 8 1027 0 0 0 8427 136 9598 - tcp_in.o 0 54 0 0 0 8127 916 9097 - tasks.o 20 700 0 5667 0 0 503 6890 - tcp_out.o 0 0 0 0 0 5060 1124 6184 - sockets.o 0 728 0 0 0 4627 824 6179 - tcp.o 4 23 0 0 0 4290 1384 5701 - api_msg.o 0 0 0 0 0 3763 1366 5129 - dhcp.o 0 8 0 0 0 3456 1401 4865 - panic.o 2579 5 0 2145 0 0 0 4729 - esp_err_to_name.o 0 0 0 0 0 50 4091 4141 - unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 - pbuf.o 0 1 0 0 0 2453 1161 3615 - portasm.o 3084 0 0 480 0 0 0 3564 - lib_a-dtoa.o 0 0 0 0 0 3522 13 3535 - etharp.o 0 241 0 0 0 2618 658 3517 - ip6.o 0 0 0 0 0 3212 124 3336 - dns.o 0 1292 0 0 0 1809 206 3307 - spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 - udp.o 2 4 0 0 0 3020 216 3242 - intr_alloc.o 8 22 0 726 0 1749 710 3215 - multi_heap.o 857 0 0 2217 0 0 0 3074 - queue.o 8 56 0 2569 0 0 369 3002 - flash_ops.o 32 41 0 2352 0 99 0 2524 - unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 - rtc_clk.o 660 8 0 1794 0 0 0 2462 - lib_a-mprec.o 0 0 0 0 0 2134 296 2430 - vfs.o 192 40 0 0 0 1995 132 2359 - ip6_frag.o 0 6 0 0 0 1905 442 2353 - api_lib.o 0 0 0 0 0 1425 919 2344 - igmp.o 0 12 0 0 0 1604 707 2323 - dbg_stubs.o 0 2072 0 32 0 100 0 2204 - vfs_uart.o 40 63 0 0 0 1775 271 2149 - unity_platform.o 0 13 0 0 0 1511 600 2124 - esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 - rtc_periph.o 0 0 0 0 0 0 2080 2080 - flash_mmap.o 0 296 0 1298 0 124 327 2045 - heap_caps.o 4 0 0 1195 0 188 593 1980 - eh_personality.o 0 0 0 0 0 1561 384 1945 - ip4.o 0 6 0 0 0 1664 139 1809 - netif.o 0 241 0 0 0 1239 287 1767 - xtensa_vectors.o 8 0 0 1697 0 0 36 1741 - cpu_start.o 0 1 0 806 0 277 486 1570 - clk.o 0 0 0 67 0 581 893 1541 - timers.o 8 56 0 1149 0 0 233 1446 - sys_arch.o 0 8 0 0 0 1216 222 1446 - multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 - heap_caps_init.o 0 4 0 0 0 1030 387 1421 - mld6.o 0 4 0 0 0 1334 0 1338 - cache_utils.o 4 14 0 836 0 81 390 1325 - raw.o 0 4 0 0 0 1087 223 1314 - esp_timer.o 8 20 0 702 0 429 142 1301 - log.o 8 268 0 456 0 396 166 1294 - system_api.o 0 8 0 589 0 0 662 1259 - soc_memory_layout.o 0 0 0 0 0 0 1239 1239 - icmp.o 0 0 0 0 0 769 371 1140 - xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 - port.o 0 16 0 617 0 0 369 1002 - pthread.o 8 8 0 174 0 298 512 1000 - icmp6.o 0 0 0 0 0 863 127 990 - rtc_init.o 0 0 0 980 0 0 0 980 - unity.o 0 108 0 0 0 767 90 965 - rtc_time.o 0 0 0 803 0 0 137 940 - dport_access.o 8 40 0 539 0 189 129 905 - lib_a-fseeko.o 0 0 0 0 0 862 0 862 - time.o 0 32 0 139 0 691 0 862 - tcpip.o 0 16 0 0 0 644 191 851 - esp_ota_ops.o 0 0 0 0 0 123 717 840 - periph_ctrl.o 8 0 0 0 0 520 256 784 - timers.o 0 12 0 0 0 638 131 781 - partition.o 0 8 0 0 0 582 141 731 - locks.o 8 0 0 552 0 0 84 644 - ipc.o 0 36 0 159 0 329 104 628 - tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 - pthread_local_storage.o 8 4 0 0 0 476 126 614 - inet_chksum.o 0 0 0 0 0 580 0 580 - crosscore_int.o 8 8 0 204 0 126 148 494 - netbuf.o 0 0 0 0 0 154 326 480 - vfs_lwip.o 0 0 0 0 0 307 155 462 - syscall_table.o 144 240 0 0 0 67 0 451 - timer.o 16 0 0 0 0 112 281 409 - int_wdt.o 0 1 0 87 0 301 0 389 - eh_globals.o 0 16 0 0 0 149 193 358 - brownout.o 0 0 0 0 0 145 191 336 - freertos_hooks.o 8 128 0 43 0 137 0 316 - windowspill_asm.o 0 0 0 311 0 0 0 311 - cpu_util.o 0 0 0 310 0 0 0 310 - rtc_module.o 8 8 0 0 0 291 0 307 - xtensa_context.o 0 0 0 299 0 0 0 299 - eh_terminate.o 0 0 0 0 0 117 141 258 - ethernet.o 0 0 0 0 0 244 12 256 - lib_a-puts.o 0 0 0 0 0 182 60 242 -dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 - lib_a-reent.o 0 0 0 0 0 232 0 232 - lib_a-fopen.o 0 0 0 0 0 228 0 228 - dhcpserver.o 0 4 0 0 0 203 0 207 - test_utils.o 0 0 0 0 0 38 140 178 - lib_a-sprintf.o 0 0 0 0 0 167 0 167 - cache_err_int.o 0 0 0 56 0 98 0 154 - list.o 0 0 0 142 0 0 0 142 - xtensa_intr.o 0 0 0 104 0 0 35 139 - syscalls.o 0 0 0 94 0 45 0 139 - si_class_type_info.o 0 0 0 0 0 0 136 136 - lib_a-assert.o 0 0 0 0 0 68 60 128 - lib_a-flags.o 0 0 0 0 0 127 0 127 - lib_a-printf.o 0 0 0 0 0 116 0 116 - ip4_addr.o 0 0 0 0 0 72 40 112 - class_type_info.o 0 0 0 0 0 0 112 112 - lib_a-s_frexp.o 0 0 0 0 0 110 0 110 - ip.o 0 60 0 0 0 50 0 110 - memp.o 0 0 0 0 0 0 108 108 - lib2funcs.o 0 0 0 104 0 0 0 104 - lib_a-vprintf.o 0 0 0 0 0 94 0 94 - lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 - def.o 0 0 0 0 0 91 0 91 - lib_a-fiprintf.o 0 0 0 0 0 84 0 84 - hw_random.o 0 4 0 74 0 0 0 78 - stack_check.o 0 4 0 0 0 32 42 78 - clock.o 0 0 0 72 0 0 0 72 - reent_init.o 0 0 0 68 0 0 2 70 - app_main.o 0 0 0 0 0 53 10 63 -state_asm--restore_extra 0 0 0 62 0 0 0 62 -state_asm--save_extra_nw 0 0 0 62 0 0 0 62 - uart.o 8 12 0 0 0 38 0 58 - new_opv.o 0 0 0 0 0 0 56 56 -xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 - lib_a-fseek.o 0 0 0 0 0 45 0 45 - _divdi3.o 0 0 0 0 0 0 40 40 - _moddi3.o 0 0 0 0 0 0 40 40 - _umoddi3.o 0 0 0 0 0 0 40 40 - new_op.o 0 0 0 0 0 0 40 40 - xtensa_init.o 0 4 0 32 0 0 0 36 - interrupts--intlevel.o 0 0 0 0 0 0 32 32 - init.o 0 0 0 0 0 27 0 27 - wifi_init.o 0 0 0 0 0 17 9 26 - ip6_addr.o 0 0 0 0 0 0 20 20 - lib_a-errno.o 0 0 0 0 0 10 0 10 - int_asm--set_intclear.o 0 0 0 8 0 0 0 8 - eri.o 0 0 0 8 0 0 0 8 - cxx_exception_stubs.o 0 0 0 0 0 6 0 6 - cxx_guards.o 0 0 0 0 0 5 0 5 - FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 - eh_term_handler.o 4 0 0 0 0 0 0 4 - eh_unex_handler.o 4 0 0 0 0 0 0 4 - bootloader_flash.o 0 0 0 0 0 0 0 0 - bootloader_sha.o 0 0 0 0 0 0 0 0 - esp_image_format.o 0 0 0 0 0 0 0 0 - lib_a-fputs.o 0 0 0 0 0 0 0 0 - lib_a-snprintf.o 0 0 0 0 0 0 0 0 - lib_a-strerror.o 0 0 0 0 0 0 0 0 - lib_a-sysgettod.o 0 0 0 0 0 0 0 0 - lib_a-u_strerr.o 0 0 0 0 0 0 0 0 - lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 - lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 - coexist_api.o 0 0 0 0 0 0 0 0 - coexist_arbit.o 0 0 0 0 0 0 0 0 - coexist_core.o 0 0 0 0 0 0 0 0 - coexist_dbg.o 0 0 0 0 0 0 0 0 - coexist_hw.o 0 0 0 0 0 0 0 0 - coexist_param.o 0 0 0 0 0 0 0 0 - coexist_timer.o 0 0 0 0 0 0 0 0 - misc_nvs.o 0 0 0 0 0 0 0 0 - gpio.o 0 0 0 0 0 0 0 0 - ets_timer_legacy.o 0 0 0 0 0 0 0 0 -event_default_handlers.o 0 0 0 0 0 0 0 0 - event_loop.o 0 0 0 0 0 0 0 0 - lib_printf.o 0 0 0 0 0 0 0 0 - phy_init.o 0 0 0 0 0 0 0 0 - sha.o 0 0 0 0 0 0 0 0 - wifi_os_adapter.o 0 0 0 0 0 0 0 0 - emac_dev.o 0 0 0 0 0 0 0 0 - emac_main.o 0 0 0 0 0 0 0 0 - event_groups.o 0 0 0 0 0 0 0 0 - ringbuf.o 0 0 0 0 0 0 0 0 - _addsubdf3.o 0 0 0 0 0 0 0 0 - _cmpdf2.o 0 0 0 0 0 0 0 0 - _divdf3.o 0 0 0 0 0 0 0 0 - _divsf3.o 0 0 0 0 0 0 0 0 - _extendsfdf2.o 0 0 0 0 0 0 0 0 - _fixdfsi.o 0 0 0 0 0 0 0 0 - _floatdidf.o 0 0 0 0 0 0 0 0 - _floatdisf.o 0 0 0 0 0 0 0 0 - _floatsidf.o 0 0 0 0 0 0 0 0 - _muldf3.o 0 0 0 0 0 0 0 0 - _popcountsi2.o 0 0 0 0 0 0 0 0 - ethernetif.o 0 0 0 0 0 0 0 0 - ethip6.o 0 0 0 0 0 0 0 0 - wlanif.o 0 0 0 0 0 0 0 0 - esp_sha256.o 0 0 0 0 0 0 0 0 - mesh.o 0 0 0 0 0 0 0 0 - mesh_common.o 0 0 0 0 0 0 0 0 - mesh_config.o 0 0 0 0 0 0 0 0 - mesh_main.o 0 0 0 0 0 0 0 0 - mesh_parent.o 0 0 0 0 0 0 0 0 - mesh_route.o 0 0 0 0 0 0 0 0 - mesh_schedule.o 0 0 0 0 0 0 0 0 - mesh_timer.o 0 0 0 0 0 0 0 0 - mesh_utilities.o 0 0 0 0 0 0 0 0 - mesh_wifi.o 0 0 0 0 0 0 0 0 - ieee80211.o 0 0 0 0 0 0 0 0 - ieee80211_action.o 0 0 0 0 0 0 0 0 -ieee80211_action_vendor. 0 0 0 0 0 0 0 0 - ieee80211_api.o 0 0 0 0 0 0 0 0 - ieee80211_crypto.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 - ieee80211_debug.o 0 0 0 0 0 0 0 0 - ieee80211_ets.o 0 0 0 0 0 0 0 0 - ieee80211_hostap.o 0 0 0 0 0 0 0 0 - ieee80211_ht.o 0 0 0 0 0 0 0 0 - ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 - ieee80211_input.o 0 0 0 0 0 0 0 0 - ieee80211_ioctl.o 0 0 0 0 0 0 0 0 - ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 - ieee80211_misc.o 0 0 0 0 0 0 0 0 - ieee80211_nvs.o 0 0 0 0 0 0 0 0 - ieee80211_output.o 0 0 0 0 0 0 0 0 - ieee80211_phy.o 0 0 0 0 0 0 0 0 - ieee80211_power.o 0 0 0 0 0 0 0 0 - ieee80211_proto.o 0 0 0 0 0 0 0 0 - ieee80211_regdomain.o 0 0 0 0 0 0 0 0 - ieee80211_rfid.o 0 0 0 0 0 0 0 0 - ieee80211_scan.o 0 0 0 0 0 0 0 0 - ieee80211_sta.o 0 0 0 0 0 0 0 0 - ieee80211_timer.o 0 0 0 0 0 0 0 0 - wl_chm.o 0 0 0 0 0 0 0 0 - wl_cnx.o 0 0 0 0 0 0 0 0 - nvs_api.o 0 0 0 0 0 0 0 0 - nvs_item_hash_list.o 0 0 0 0 0 0 0 0 - nvs_page.o 0 0 0 0 0 0 0 0 - nvs_pagemanager.o 0 0 0 0 0 0 0 0 - nvs_storage.o 0 0 0 0 0 0 0 0 - nvs_types.o 0 0 0 0 0 0 0 0 - phy.o 0 0 0 0 0 0 0 0 - phy_chip_v7.o 0 0 0 0 0 0 0 0 - phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 - phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 - esf_buf.o 0 0 0 0 0 0 0 0 - if_hwctrl.o 0 0 0 0 0 0 0 0 - lmac.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 - pp.o 0 0 0 0 0 0 0 0 - pp_debug.o 0 0 0 0 0 0 0 0 - pp_timer.o 0 0 0 0 0 0 0 0 - rate_control.o 0 0 0 0 0 0 0 0 - trc.o 0 0 0 0 0 0 0 0 - wdev.o 0 0 0 0 0 0 0 0 - bt_bb.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - rtc.o 0 0 0 0 0 0 0 0 - rtc_analog.o 0 0 0 0 0 0 0 0 - smartconfig_ack.o 0 0 0 0 0 0 0 0 - gpio_periph.o 0 0 0 0 0 0 0 0 - rtc_sleep.o 0 0 0 0 0 0 0 0 - bad_alloc.o 0 0 0 0 0 0 0 0 - del_op.o 0 0 0 0 0 0 0 0 - del_opv.o 0 0 0 0 0 0 0 0 - eh_exception.o 0 0 0 0 0 0 0 0 - new_handler.o 0 0 0 0 0 0 0 0 - pure.o 0 0 0 0 0 0 0 0 - tinfo.o 0 0 0 0 0 0 0 0 - ap_config.o 0 0 0 0 0 0 0 0 - common.o 0 0 0 0 0 0 0 0 - wpa.o 0 0 0 0 0 0 0 0 - wpa_auth.o 0 0 0 0 0 0 0 0 - wpa_auth_ie.o 0 0 0 0 0 0 0 0 - wpa_common.o 0 0 0 0 0 0 0 0 - wpa_debug.o 0 0 0 0 0 0 0 0 - wpa_ie.o 0 0 0 0 0 0 0 0 - wpa_main.o 0 0 0 0 0 0 0 0 - wpabuf.o 0 0 0 0 0 0 0 0 - wpas_glue.o 0 0 0 0 0 0 0 0 - wpa2_internal.o 0 0 0 0 0 0 0 0 - os_xtensa.o 0 0 0 0 0 0 0 0 - wps_internal.o 0 0 0 0 0 0 0 0 -The following entries are present in only: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - bootloader_init.c.o 0 24 0 0 0 0 0 24 - esp_image_format.c.o 0 8 0 0 0 0 0 8 - bootloader_flash.c.o 4 1 0 0 0 0 0 5 - bootloader_sha.c.o 0 4 0 0 0 0 0 4 - rtc_clk.c.o 0 4 0 0 0 0 0 4 - bootloader_utility.c.o 0 1 0 0 0 0 0 1 - crt0.o 0 0 0 0 0 0 0 0 - crtbegin.o 0 0 0 0 0 0 0 0 - crtend.o 0 0 0 0 0 0 0 0 - crti.o 0 0 0 0 0 0 0 0 - crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_clock.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 -bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 - bootloader_esp32.c.o 0 0 0 0 0 0 0 0 -bootloader_flash_config_ 0 0 0 0 0 0 0 0 - bootloader_random.c.o 0 0 0 0 0 0 0 0 - flash_partitions.c.o 0 0 0 0 0 0 0 0 - flash_qio_mode.c.o 0 0 0 0 0 0 0 0 - lib_a-impure.o 0 0 0 0 0 0 0 0 - lib_a-memcmp.o 0 0 0 0 0 0 0 0 - lib_a-memcpy.o 0 0 0 0 0 0 0 0 - lib_a-memset.o 0 0 0 0 0 0 0 0 - lib_a-strcspn.o 0 0 0 0 0 0 0 0 - lib_a-strlen.o 0 0 0 0 0 0 0 0 - lib_a-strncpy.o 0 0 0 0 0 0 0 0 - lib_a-strstr.o 0 0 0 0 0 0 0 0 - _bswapsi2.o 0 0 0 0 0 0 0 0 - log_noos.c.o 0 0 0 0 0 0 0 0 - bootloader_start.c.o 0 0 0 0 0 0 0 0 - cpu_util.c.o 0 0 0 0 0 0 0 0 - rtc_clk_init.c.o 0 0 0 0 0 0 0 0 - rtc_init.c.o 0 0 0 0 0 0 0 0 - rtc_time.c.o 0 0 0 0 0 0 0 0 - rtc_wdt.c.o 0 0 0 0 0 0 0 0 - gpio_periph.c.o 0 0 0 0 0 0 0 0 - spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 - -*** -Running idf_size.py diff --files with itself... - MAP file: app.map - MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 9324 - DRAM .bss size: 8296 bytes 8296 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) - Flash code: 146944 bytes 146944 - Flash rodata: 39580 bytes 39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 234780 -Per-file contributions to ELF file: - Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - lib_a-vfprintf.o| | | | | | | | | | | | | | | | 14193| 14193| | 756| 756| | 14949| 14949| - lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13834| 13834| | 756| 756| | 14590| 14590| - lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9642| 9642| | 1210| 1210| | 10852| 10852| - lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 738| 738| | 10671| 10671| - nd6.o| 8| 8| | 1027| 1027| | | | | | | | | | | 8427| 8427| | 136| 136| | 9598| 9598| - tcp_in.o| | | | 54| 54| | | | | | | | | | | 8127| 8127| | 916| 916| | 9097| 9097| - tasks.o| 20| 20| | 700| 700| | | | | 5667| 5667| | | | | | | | 503| 503| | 6890| 6890| - tcp_out.o| | | | | | | | | | | | | | | | 5060| 5060| | 1124| 1124| | 6184| 6184| - sockets.o| | | | 728| 728| | | | | | | | | | | 4627| 4627| | 824| 824| | 6179| 6179| - tcp.o| 4| 4| | 23| 23| | | | | | | | | | | 4290| 4290| | 1384| 1384| | 5701| 5701| - api_msg.o| | | | | | | | | | | | | | | | 3763| 3763| | 1366| 1366| | 5129| 5129| - dhcp.o| | | | 8| 8| | | | | | | | | | | 3456| 3456| | 1401| 1401| | 4865| 4865| - panic.o| 2579| 2579| | 5| 5| | | | | 2145| 2145| | | | | | | | | | | 4729| 4729| - esp_err_to_name.o| | | | | | | | | | | | | | | | 50| 50| | 4091| 4091| | 4141| 4141| - unwind-dw2-fde.o| 4| 4| | 20| 20| | | | | | | | | | | 3316| 3316| | 404| 404| | 3744| 3744| - pbuf.o| | | | 1| 1| | | | | | | | | | | 2453| 2453| | 1161| 1161| | 3615| 3615| - portasm.o| 3084| 3084| | | | | | | | 480| 480| | | | | | | | | | | 3564| 3564| - lib_a-dtoa.o| | | | | | | | | | | | | | | | 3522| 3522| | 13| 13| | 3535| 3535| - etharp.o| | | | 241| 241| | | | | | | | | | | 2618| 2618| | 658| 658| | 3517| 3517| - ip6.o| | | | | | | | | | | | | | | | 3212| 3212| | 124| 124| | 3336| 3336| - dns.o| | | | 1292| 1292| | | | | | | | | | | 1809| 1809| | 206| 206| | 3307| 3307| - spi_flash_rom_patch.o| | | | | | | | | | 2518| 2518| | | | | | | | 766| 766| | 3284| 3284| - udp.o| 2| 2| | 4| 4| | | | | | | | | | | 3020| 3020| | 216| 216| | 3242| 3242| - intr_alloc.o| 8| 8| | 22| 22| | | | | 726| 726| | | | | 1749| 1749| | 710| 710| | 3215| 3215| - multi_heap.o| 857| 857| | | | | | | | 2217| 2217| | | | | | | | | | | 3074| 3074| - queue.o| 8| 8| | 56| 56| | | | | 2569| 2569| | | | | | | | 369| 369| | 3002| 3002| - flash_ops.o| 32| 32| | 41| 41| | | | | 2352| 2352| | | | | 99| 99| | | | | 2524| 2524| - unwind-dw2-xtensa.o| | | | | | | | | | | | | | | | 2172| 2172| | 324| 324| | 2496| 2496| - rtc_clk.o| 660| 660| | 8| 8| | | | | 1794| 1794| | | | | | | | | | | 2462| 2462| - lib_a-mprec.o| | | | | | | | | | | | | | | | 2134| 2134| | 296| 296| | 2430| 2430| - vfs.o| 192| 192| | 40| 40| | | | | | | | | | | 1995| 1995| | 132| 132| | 2359| 2359| - ip6_frag.o| | | | 6| 6| | | | | | | | | | | 1905| 1905| | 442| 442| | 2353| 2353| - api_lib.o| | | | | | | | | | | | | | | | 1425| 1425| | 919| 919| | 2344| 2344| - igmp.o| | | | 12| 12| | | | | | | | | | | 1604| 1604| | 707| 707| | 2323| 2323| - dbg_stubs.o| | | | 2072| 2072| | | | | 32| 32| | | | | 100| 100| | | | | 2204| 2204| - vfs_uart.o| 40| 40| | 63| 63| | | | | | | | | | | 1775| 1775| | 271| 271| | 2149| 2149| - unity_platform.o| | | | 13| 13| | | | | | | | | | | 1511| 1511| | 600| 600| | 2124| 2124| - esp_timer_esp32.o| 8| 8| | 26| 26| | | | | 1295| 1295| | | | | 254| 254| | 526| 526| | 2109| 2109| - rtc_periph.o| | | | | | | | | | | | | | | | | | | 2080| 2080| | 2080| 2080| - flash_mmap.o| | | | 296| 296| | | | | 1298| 1298| | | | | 124| 124| | 327| 327| | 2045| 2045| - heap_caps.o| 4| 4| | | | | | | | 1195| 1195| | | | | 188| 188| | 593| 593| | 1980| 1980| - eh_personality.o| | | | | | | | | | | | | | | | 1561| 1561| | 384| 384| | 1945| 1945| - ip4.o| | | | 6| 6| | | | | | | | | | | 1664| 1664| | 139| 139| | 1809| 1809| - netif.o| | | | 241| 241| | | | | | | | | | | 1239| 1239| | 287| 287| | 1767| 1767| - xtensa_vectors.o| 8| 8| | | | | | | | 1697| 1697| | | | | | | | 36| 36| | 1741| 1741| - cpu_start.o| | | | 1| 1| | | | | 806| 806| | | | | 277| 277| | 486| 486| | 1570| 1570| - clk.o| | | | | | | | | | 67| 67| | | | | 581| 581| | 893| 893| | 1541| 1541| - timers.o| 8| 8| | 56| 56| | | | | 1149| 1149| | | | | | | | 233| 233| | 1446| 1446| - sys_arch.o| | | | 8| 8| | | | | | | | | | | 1216| 1216| | 222| 222| | 1446| 1446| - multi_heap_poisoning.o| 470| 470| | | | | | | | 964| 964| | | | | | | | | | | 1434| 1434| - heap_caps_init.o| | | | 4| 4| | | | | | | | | | | 1030| 1030| | 387| 387| | 1421| 1421| - mld6.o| | | | 4| 4| | | | | | | | | | | 1334| 1334| | | | | 1338| 1338| - cache_utils.o| 4| 4| | 14| 14| | | | | 836| 836| | | | | 81| 81| | 390| 390| | 1325| 1325| - raw.o| | | | 4| 4| | | | | | | | | | | 1087| 1087| | 223| 223| | 1314| 1314| - esp_timer.o| 8| 8| | 20| 20| | | | | 702| 702| | | | | 429| 429| | 142| 142| | 1301| 1301| - log.o| 8| 8| | 268| 268| | | | | 456| 456| | | | | 396| 396| | 166| 166| | 1294| 1294| - system_api.o| | | | 8| 8| | | | | 589| 589| | | | | | | | 662| 662| | 1259| 1259| - soc_memory_layout.o| | | | | | | | | | | | | | | | | | | 1239| 1239| | 1239| 1239| - icmp.o| | | | | | | | | | | | | | | | 769| 769| | 371| 371| | 1140| 1140| - xtensa_intr_asm.o| 1024| 1024| | | | | | | | 51| 51| | | | | | | | | | | 1075| 1075| - port.o| | | | 16| 16| | | | | 617| 617| | | | | | | | 369| 369| | 1002| 1002| - pthread.o| 8| 8| | 8| 8| | | | | 174| 174| | | | | 298| 298| | 512| 512| | 1000| 1000| - icmp6.o| | | | | | | | | | | | | | | | 863| 863| | 127| 127| | 990| 990| - rtc_init.o| | | | | | | | | | 980| 980| | | | | | | | | | | 980| 980| - unity.o| | | | 108| 108| | | | | | | | | | | 767| 767| | 90| 90| | 965| 965| - rtc_time.o| | | | | | | | | | 803| 803| | | | | | | | 137| 137| | 940| 940| - dport_access.o| 8| 8| | 40| 40| | | | | 539| 539| | | | | 189| 189| | 129| 129| | 905| 905| - lib_a-fseeko.o| | | | | | | | | | | | | | | | 862| 862| | | | | 862| 862| - time.o| | | | 32| 32| | | | | 139| 139| | | | | 691| 691| | | | | 862| 862| - tcpip.o| | | | 16| 16| | | | | | | | | | | 644| 644| | 191| 191| | 851| 851| - esp_ota_ops.o| | | | | | | | | | | | | | | | 123| 123| | 717| 717| | 840| 840| - periph_ctrl.o| 8| 8| | | | | | | | | | | | | | 520| 520| | 256| 256| | 784| 784| - timers.o| | | | 12| 12| | | | | | | | | | | 638| 638| | 131| 131| | 781| 781| - partition.o| | | | 8| 8| | | | | | | | | | | 582| 582| | 141| 141| | 731| 731| - locks.o| 8| 8| | | | | | | | 552| 552| | | | | | | | 84| 84| | 644| 644| - ipc.o| | | | 36| 36| | | | | 159| 159| | | | | 329| 329| | 104| 104| | 628| 628| - tcpip_adapter_lwip.o| | | | 81| 81| | | | | | | | | | | 180| 180| | 359| 359| | 620| 620| - pthread_local_storage.o| 8| 8| | 4| 4| | | | | | | | | | | 476| 476| | 126| 126| | 614| 614| - inet_chksum.o| | | | | | | | | | | | | | | | 580| 580| | | | | 580| 580| - crosscore_int.o| 8| 8| | 8| 8| | | | | 204| 204| | | | | 126| 126| | 148| 148| | 494| 494| - netbuf.o| | | | | | | | | | | | | | | | 154| 154| | 326| 326| | 480| 480| - vfs_lwip.o| | | | | | | | | | | | | | | | 307| 307| | 155| 155| | 462| 462| - syscall_table.o| 144| 144| | 240| 240| | | | | | | | | | | 67| 67| | | | | 451| 451| - timer.o| 16| 16| | | | | | | | | | | | | | 112| 112| | 281| 281| | 409| 409| - int_wdt.o| | | | 1| 1| | | | | 87| 87| | | | | 301| 301| | | | | 389| 389| - eh_globals.o| | | | 16| 16| | | | | | | | | | | 149| 149| | 193| 193| | 358| 358| - brownout.o| | | | | | | | | | | | | | | | 145| 145| | 191| 191| | 336| 336| - freertos_hooks.o| 8| 8| | 128| 128| | | | | 43| 43| | | | | 137| 137| | | | | 316| 316| - windowspill_asm.o| | | | | | | | | | 311| 311| | | | | | | | | | | 311| 311| - cpu_util.o| | | | | | | | | | 310| 310| | | | | | | | | | | 310| 310| - rtc_module.o| 8| 8| | 8| 8| | | | | | | | | | | 291| 291| | | | | 307| 307| - xtensa_context.o| | | | | | | | | | 299| 299| | | | | | | | | | | 299| 299| - eh_terminate.o| | | | | | | | | | | | | | | | 117| 117| | 141| 141| | 258| 258| - ethernet.o| | | | | | | | | | | | | | | | 244| 244| | 12| 12| | 256| 256| - lib_a-puts.o| | | | | | | | | | | | | | | | 182| 182| | 60| 60| | 242| 242| -dport_panic_highint_hdl.| 8| 8| | | | | | | | 234| 234| | | | | | | | | | | 242| 242| - lib_a-reent.o| | | | | | | | | | | | | | | | 232| 232| | | | | 232| 232| - lib_a-fopen.o| | | | | | | | | | | | | | | | 228| 228| | | | | 228| 228| - dhcpserver.o| | | | 4| 4| | | | | | | | | | | 203| 203| | | | | 207| 207| - test_utils.o| | | | | | | | | | | | | | | | 38| 38| | 140| 140| | 178| 178| - lib_a-sprintf.o| | | | | | | | | | | | | | | | 167| 167| | | | | 167| 167| - cache_err_int.o| | | | | | | | | | 56| 56| | | | | 98| 98| | | | | 154| 154| - list.o| | | | | | | | | | 142| 142| | | | | | | | | | | 142| 142| - xtensa_intr.o| | | | | | | | | | 104| 104| | | | | | | | 35| 35| | 139| 139| - syscalls.o| | | | | | | | | | 94| 94| | | | | 45| 45| | | | | 139| 139| - si_class_type_info.o| | | | | | | | | | | | | | | | | | | 136| 136| | 136| 136| - lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| - lib_a-flags.o| | | | | | | | | | | | | | | | 127| 127| | | | | 127| 127| - lib_a-printf.o| | | | | | | | | | | | | | | | 116| 116| | | | | 116| 116| - ip4_addr.o| | | | | | | | | | | | | | | | 72| 72| | 40| 40| | 112| 112| - class_type_info.o| | | | | | | | | | | | | | | | | | | 112| 112| | 112| 112| - lib_a-s_frexp.o| | | | | | | | | | | | | | | | 110| 110| | | | | 110| 110| - ip.o| | | | 60| 60| | | | | | | | | | | 50| 50| | | | | 110| 110| - memp.o| | | | | | | | | | | | | | | | | | | 108| 108| | 108| 108| - lib2funcs.o| | | | | | | | | | 104| 104| | | | | | | | | | | 104| 104| - lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| - lib_a-s_fpclassify.o| | | | | | | | | | 92| 92| | | | | | | | | | | 92| 92| - def.o| | | | | | | | | | | | | | | | 91| 91| | | | | 91| 91| - lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| - hw_random.o| | | | 4| 4| | | | | 74| 74| | | | | | | | | | | 78| 78| - stack_check.o| | | | 4| 4| | | | | | | | | | | 32| 32| | 42| 42| | 78| 78| - clock.o| | | | | | | | | | 72| 72| | | | | | | | | | | 72| 72| - reent_init.o| | | | | | | | | | 68| 68| | | | | | | | 2| 2| | 70| 70| - app_main.o| | | | | | | | | | | | | | | | 53| 53| | 10| 10| | 63| 63| -state_asm--restore_extra| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| -state_asm--save_extra_nw| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| - uart.o| 8| 8| | 12| 12| | | | | | | | | | | 38| 38| | | | | 58| 58| - new_opv.o| | | | | | | | | | | | | | | | | | | 56| 56| | 56| 56| -xtensa_vector_defaults.o| | | | | | | | | | 46| 46| | | | | | | | | | | 46| 46| - lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| - _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - new_op.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - xtensa_init.o| | | | 4| 4| | | | | 32| 32| | | | | | | | | | | 36| 36| - interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| - init.o| | | | | | | | | | | | | | | | 27| 27| | | | | 27| 27| - wifi_init.o| | | | | | | | | | | | | | | | 17| 17| | 9| 9| | 26| 26| - ip6_addr.o| | | | | | | | | | | | | | | | | | | 20| 20| | 20| 20| - lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| - int_asm--set_intclear.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| - eri.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| - cxx_exception_stubs.o| | | | | | | | | | | | | | | | 6| 6| | | | | 6| 6| - cxx_guards.o| | | | | | | | | | | | | | | | 5| 5| | | | | 5| 5| - FreeRTOS-openocd.o| 4| 4| | | | | | | | | | | | | | | | | | | | 4| 4| - eh_term_handler.o| 4| 4| | | | | | | | | | | | | | | | | | | | 4| 4| - eh_unex_handler.o| 4| 4| | | | | | | | | | | | | | | | | | | | 4| 4| - bootloader_flash.o| | | | | | | | | | | | | | | | | | | | | | | | - bootloader_sha.o| | | | | | | | | | | | | | | | | | | | | | | | - esp_image_format.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-snprintf.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-vsnprintf.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-xpg_strerror_r.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_api.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_arbit.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_core.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_dbg.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_hw.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_param.o| | | | | | | | | | | | | | | | | | | | | | | | - coexist_timer.o| | | | | | | | | | | | | | | | | | | | | | | | - misc_nvs.o| | | | | | | | | | | | | | | | | | | | | | | | - gpio.o| | | | | | | | | | | | | | | | | | | | | | | | - ets_timer_legacy.o| | | | | | | | | | | | | | | | | | | | | | | | -event_default_handlers.o| | | | | | | | | | | | | | | | | | | | | | | | - event_loop.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_printf.o| | | | | | | | | | | | | | | | | | | | | | | | - phy_init.o| | | | | | | | | | | | | | | | | | | | | | | | - sha.o| | | | | | | | | | | | | | | | | | | | | | | | - wifi_os_adapter.o| | | | | | | | | | | | | | | | | | | | | | | | - emac_dev.o| | | | | | | | | | | | | | | | | | | | | | | | - emac_main.o| | | | | | | | | | | | | | | | | | | | | | | | - event_groups.o| | | | | | | | | | | | | | | | | | | | | | | | - ringbuf.o| | | | | | | | | | | | | | | | | | | | | | | | - _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | - _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _divsf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _extendsfdf2.o| | | | | | | | | | | | | | | | | | | | | | | | - _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | - _floatdidf.o| | | | | | | | | | | | | | | | | | | | | | | | - _floatdisf.o| | | | | | | | | | | | | | | | | | | | | | | | - _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | - _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | - ethernetif.o| | | | | | | | | | | | | | | | | | | | | | | | - ethip6.o| | | | | | | | | | | | | | | | | | | | | | | | - wlanif.o| | | | | | | | | | | | | | | | | | | | | | | | - esp_sha256.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_common.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_config.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_main.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_parent.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_route.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_schedule.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_timer.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_utilities.o| | | | | | | | | | | | | | | | | | | | | | | | - mesh_wifi.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_action.o| | | | | | | | | | | | | | | | | | | | | | | | -ieee80211_action_vendor.| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_api.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_crypto.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_crypto_ccmp.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_crypto_tkip.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_crypto_wep.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_debug.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_ets.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_hostap.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_ht.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_ie_vendor.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_input.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_ioctl.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_mesh_quick.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_misc.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_nvs.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_output.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_phy.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_power.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_proto.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_regdomain.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_rfid.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_scan.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_sta.o| | | | | | | | | | | | | | | | | | | | | | | | - ieee80211_timer.o| | | | | | | | | | | | | | | | | | | | | | | | - wl_chm.o| | | | | | | | | | | | | | | | | | | | | | | | - wl_cnx.o| | | | | | | | | | | | | | | | | | | | | | | | - nvs_api.o| | | | | | | | | | | | | | | | | | | | | | | | - nvs_item_hash_list.o| | | | | | | | | | | | | | | | | | | | | | | | - nvs_page.o| | | | | | | | | | | | | | | | | | | | | | | | - nvs_pagemanager.o| | | | | | | | | | | | | | | | | | | | | | | | - nvs_storage.o| | | | | | | | | | | | | | | | | | | | | | | | - nvs_types.o| | | | | | | | | | | | | | | | | | | | | | | | - phy.o| | | | | | | | | | | | | | | | | | | | | | | | - phy_chip_v7.o| | | | | | | | | | | | | | | | | | | | | | | | - phy_chip_v7_ana.o| | | | | | | | | | | | | | | | | | | | | | | | - phy_chip_v7_cal.o| | | | | | | | | | | | | | | | | | | | | | | | - esf_buf.o| | | | | | | | | | | | | | | | | | | | | | | | - if_hwctrl.o| | | | | | | | | | | | | | | | | | | | | | | | - lmac.o| | | | | | | | | | | | | | | | | | | | | | | | - pm.o| | | | | | | | | | | | | | | | | | | | | | | | - pm_for_bcn_only_mode.o| | | | | | | | | | | | | | | | | | | | | | | | - pp.o| | | | | | | | | | | | | | | | | | | | | | | | - pp_debug.o| | | | | | | | | | | | | | | | | | | | | | | | - pp_timer.o| | | | | | | | | | | | | | | | | | | | | | | | - rate_control.o| | | | | | | | | | | | | | | | | | | | | | | | - trc.o| | | | | | | | | | | | | | | | | | | | | | | | - wdev.o| | | | | | | | | | | | | | | | | | | | | | | | - bt_bb.o| | | | | | | | | | | | | | | | | | | | | | | | - pm.o| | | | | | | | | | | | | | | | | | | | | | | | - rtc.o| | | | | | | | | | | | | | | | | | | | | | | | - rtc_analog.o| | | | | | | | | | | | | | | | | | | | | | | | - smartconfig_ack.o| | | | | | | | | | | | | | | | | | | | | | | | - gpio_periph.o| | | | | | | | | | | | | | | | | | | | | | | | - rtc_sleep.o| | | | | | | | | | | | | | | | | | | | | | | | - bad_alloc.o| | | | | | | | | | | | | | | | | | | | | | | | - del_op.o| | | | | | | | | | | | | | | | | | | | | | | | - del_opv.o| | | | | | | | | | | | | | | | | | | | | | | | - eh_exception.o| | | | | | | | | | | | | | | | | | | | | | | | - new_handler.o| | | | | | | | | | | | | | | | | | | | | | | | - pure.o| | | | | | | | | | | | | | | | | | | | | | | | - tinfo.o| | | | | | | | | | | | | | | | | | | | | | | | - ap_config.o| | | | | | | | | | | | | | | | | | | | | | | | - common.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa_auth.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa_auth_ie.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa_common.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa_debug.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa_ie.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa_main.o| | | | | | | | | | | | | | | | | | | | | | | | - wpabuf.o| | | | | | | | | | | | | | | | | | | | | | | | - wpas_glue.o| | | | | | | | | | | | | | | | | | | | | | | | - wpa2_internal.o| | | | | | | | | | | | | | | | | | | | | | | | - os_xtensa.o| | | | | | | | | | | | | | | | | | | | | | | | - wps_internal.o| | | | | | | | | | | | | | | | | | | | | | | | - -*** -Running idf_size.py diff --files with another app... - MAP file: app.map - MAP file: app2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 8580 +744 - DRAM .bss size: 8296 bytes 2024 +6272 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) - Flash code: 146944 bytes 77191 +69753 - Flash rodata: 39580 bytes 22360 +17220 -Total image size:~ 234780 bytes (.bin may be padded larger) 147087 +87693 -Per-file contributions to ELF file: - Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - lib_a-vfprintf.o| | | | | | | | | | | | | | | | 14193| 13681| +512| 756| 752| +4| 14949| 14433| +516 - lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13834| 13290| +544| 756| 752| +4| 14590| 14042| +548 - lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9642| 9623| +19| 1210| 1206| +4| 10852| 10829| +23 - lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 738| 734| +4| 10671| 10667| +4 - lib_a-dtoa.o| | | | | | | | | | | | | | | | 3522| 3524| -2| 13| 13| | 3535| 3537| -2 - lib_a-mprec.o| | | | | | | | | | | | | | | | 2134| 2140| -6| 296| 296| | 2430| 2436| -6 - lib_a-fseeko.o| | | | | | | | | | | | | | | | 862| 918| -56| | | | 862| 918| -56 - windowspill_asm.o| | | | | | | | | | 311| 315| -4| | | | | | | | | | 311| 315| -4 - lib_a-puts.o| | | | | | | | | | | | | | | | 182| 234| -52| 60| 60| | 242| 294| -52 - lib_a-reent.o| | | | | | | | | | | | | | | | 232| 236| -4| | | | 232| 236| -4 - lib_a-fopen.o| | | | | | | | | | | | | | | | 228| 244| -16| | | | 228| 244| -16 - lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| - lib_a-flags.o| | | | | | | | | | | | | | | | 127| 128| -1| | | | 127| 128| -1 - lib_a-printf.o| | | | | | | | | | | | | | | | 116| | +116| | | | 116| | +116 - lib_a-s_frexp.o| | | | | | | | | | | | | | | | 110| 100| +10| | | | 110| 100| +10 - lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| - lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| -state_asm--restore_extra| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| -state_asm--save_extra_nw| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| - lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| - _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| - lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| - int_asm--set_intclear.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| - lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-snprintf.o| | | | | | | | | | | | | | | | | 217| -217| | | | | 217| -217 - lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | - _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | - _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | - _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | - _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | -The following entries are present in only: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - nd6.o 8 1027 0 0 0 8427 136 9598 - tcp_in.o 0 54 0 0 0 8127 916 9097 - tasks.o 20 700 0 5667 0 0 503 6890 - tcp_out.o 0 0 0 0 0 5060 1124 6184 - sockets.o 0 728 0 0 0 4627 824 6179 - tcp.o 4 23 0 0 0 4290 1384 5701 - api_msg.o 0 0 0 0 0 3763 1366 5129 - dhcp.o 0 8 0 0 0 3456 1401 4865 - panic.o 2579 5 0 2145 0 0 0 4729 - esp_err_to_name.o 0 0 0 0 0 50 4091 4141 - unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 - pbuf.o 0 1 0 0 0 2453 1161 3615 - portasm.o 3084 0 0 480 0 0 0 3564 - etharp.o 0 241 0 0 0 2618 658 3517 - ip6.o 0 0 0 0 0 3212 124 3336 - dns.o 0 1292 0 0 0 1809 206 3307 - spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 - udp.o 2 4 0 0 0 3020 216 3242 - intr_alloc.o 8 22 0 726 0 1749 710 3215 - multi_heap.o 857 0 0 2217 0 0 0 3074 - queue.o 8 56 0 2569 0 0 369 3002 - flash_ops.o 32 41 0 2352 0 99 0 2524 - unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 - rtc_clk.o 660 8 0 1794 0 0 0 2462 - vfs.o 192 40 0 0 0 1995 132 2359 - ip6_frag.o 0 6 0 0 0 1905 442 2353 - api_lib.o 0 0 0 0 0 1425 919 2344 - igmp.o 0 12 0 0 0 1604 707 2323 - dbg_stubs.o 0 2072 0 32 0 100 0 2204 - vfs_uart.o 40 63 0 0 0 1775 271 2149 - unity_platform.o 0 13 0 0 0 1511 600 2124 - esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 - rtc_periph.o 0 0 0 0 0 0 2080 2080 - flash_mmap.o 0 296 0 1298 0 124 327 2045 - heap_caps.o 4 0 0 1195 0 188 593 1980 - eh_personality.o 0 0 0 0 0 1561 384 1945 - ip4.o 0 6 0 0 0 1664 139 1809 - netif.o 0 241 0 0 0 1239 287 1767 - xtensa_vectors.o 8 0 0 1697 0 0 36 1741 - cpu_start.o 0 1 0 806 0 277 486 1570 - clk.o 0 0 0 67 0 581 893 1541 - timers.o 8 56 0 1149 0 0 233 1446 - sys_arch.o 0 8 0 0 0 1216 222 1446 - multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 - heap_caps_init.o 0 4 0 0 0 1030 387 1421 - mld6.o 0 4 0 0 0 1334 0 1338 - cache_utils.o 4 14 0 836 0 81 390 1325 - raw.o 0 4 0 0 0 1087 223 1314 - esp_timer.o 8 20 0 702 0 429 142 1301 - log.o 8 268 0 456 0 396 166 1294 - system_api.o 0 8 0 589 0 0 662 1259 - soc_memory_layout.o 0 0 0 0 0 0 1239 1239 - icmp.o 0 0 0 0 0 769 371 1140 - xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 - port.o 0 16 0 617 0 0 369 1002 - pthread.o 8 8 0 174 0 298 512 1000 - icmp6.o 0 0 0 0 0 863 127 990 - rtc_init.o 0 0 0 980 0 0 0 980 - unity.o 0 108 0 0 0 767 90 965 - rtc_time.o 0 0 0 803 0 0 137 940 - dport_access.o 8 40 0 539 0 189 129 905 - time.o 0 32 0 139 0 691 0 862 - tcpip.o 0 16 0 0 0 644 191 851 - esp_ota_ops.o 0 0 0 0 0 123 717 840 - periph_ctrl.o 8 0 0 0 0 520 256 784 - timers.o 0 12 0 0 0 638 131 781 - partition.o 0 8 0 0 0 582 141 731 - locks.o 8 0 0 552 0 0 84 644 - ipc.o 0 36 0 159 0 329 104 628 - tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 - pthread_local_storage.o 8 4 0 0 0 476 126 614 - inet_chksum.o 0 0 0 0 0 580 0 580 - crosscore_int.o 8 8 0 204 0 126 148 494 - netbuf.o 0 0 0 0 0 154 326 480 - vfs_lwip.o 0 0 0 0 0 307 155 462 - syscall_table.o 144 240 0 0 0 67 0 451 - timer.o 16 0 0 0 0 112 281 409 - int_wdt.o 0 1 0 87 0 301 0 389 - eh_globals.o 0 16 0 0 0 149 193 358 - brownout.o 0 0 0 0 0 145 191 336 - freertos_hooks.o 8 128 0 43 0 137 0 316 - cpu_util.o 0 0 0 310 0 0 0 310 - rtc_module.o 8 8 0 0 0 291 0 307 - xtensa_context.o 0 0 0 299 0 0 0 299 - eh_terminate.o 0 0 0 0 0 117 141 258 - ethernet.o 0 0 0 0 0 244 12 256 -dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 - dhcpserver.o 0 4 0 0 0 203 0 207 - test_utils.o 0 0 0 0 0 38 140 178 - lib_a-sprintf.o 0 0 0 0 0 167 0 167 - cache_err_int.o 0 0 0 56 0 98 0 154 - list.o 0 0 0 142 0 0 0 142 - xtensa_intr.o 0 0 0 104 0 0 35 139 - syscalls.o 0 0 0 94 0 45 0 139 - si_class_type_info.o 0 0 0 0 0 0 136 136 - ip4_addr.o 0 0 0 0 0 72 40 112 - class_type_info.o 0 0 0 0 0 0 112 112 - ip.o 0 60 0 0 0 50 0 110 - memp.o 0 0 0 0 0 0 108 108 - lib2funcs.o 0 0 0 104 0 0 0 104 - lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 - def.o 0 0 0 0 0 91 0 91 - hw_random.o 0 4 0 74 0 0 0 78 - stack_check.o 0 4 0 0 0 32 42 78 - clock.o 0 0 0 72 0 0 0 72 - reent_init.o 0 0 0 68 0 0 2 70 - app_main.o 0 0 0 0 0 53 10 63 - uart.o 8 12 0 0 0 38 0 58 - new_opv.o 0 0 0 0 0 0 56 56 -xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 - new_op.o 0 0 0 0 0 0 40 40 - xtensa_init.o 0 4 0 32 0 0 0 36 - init.o 0 0 0 0 0 27 0 27 - wifi_init.o 0 0 0 0 0 17 9 26 - ip6_addr.o 0 0 0 0 0 0 20 20 - eri.o 0 0 0 8 0 0 0 8 - cxx_exception_stubs.o 0 0 0 0 0 6 0 6 - cxx_guards.o 0 0 0 0 0 5 0 5 - FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 - eh_term_handler.o 4 0 0 0 0 0 0 4 - eh_unex_handler.o 4 0 0 0 0 0 0 4 - bootloader_flash.o 0 0 0 0 0 0 0 0 - bootloader_sha.o 0 0 0 0 0 0 0 0 - esp_image_format.o 0 0 0 0 0 0 0 0 - lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 - lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 - coexist_api.o 0 0 0 0 0 0 0 0 - coexist_arbit.o 0 0 0 0 0 0 0 0 - coexist_core.o 0 0 0 0 0 0 0 0 - coexist_dbg.o 0 0 0 0 0 0 0 0 - coexist_hw.o 0 0 0 0 0 0 0 0 - coexist_param.o 0 0 0 0 0 0 0 0 - coexist_timer.o 0 0 0 0 0 0 0 0 - misc_nvs.o 0 0 0 0 0 0 0 0 - gpio.o 0 0 0 0 0 0 0 0 - ets_timer_legacy.o 0 0 0 0 0 0 0 0 -event_default_handlers.o 0 0 0 0 0 0 0 0 - event_loop.o 0 0 0 0 0 0 0 0 - lib_printf.o 0 0 0 0 0 0 0 0 - phy_init.o 0 0 0 0 0 0 0 0 - sha.o 0 0 0 0 0 0 0 0 - wifi_os_adapter.o 0 0 0 0 0 0 0 0 - emac_dev.o 0 0 0 0 0 0 0 0 - emac_main.o 0 0 0 0 0 0 0 0 - event_groups.o 0 0 0 0 0 0 0 0 - ringbuf.o 0 0 0 0 0 0 0 0 - _divsf3.o 0 0 0 0 0 0 0 0 - _extendsfdf2.o 0 0 0 0 0 0 0 0 - _floatdidf.o 0 0 0 0 0 0 0 0 - _floatdisf.o 0 0 0 0 0 0 0 0 - ethernetif.o 0 0 0 0 0 0 0 0 - ethip6.o 0 0 0 0 0 0 0 0 - wlanif.o 0 0 0 0 0 0 0 0 - esp_sha256.o 0 0 0 0 0 0 0 0 - mesh.o 0 0 0 0 0 0 0 0 - mesh_common.o 0 0 0 0 0 0 0 0 - mesh_config.o 0 0 0 0 0 0 0 0 - mesh_main.o 0 0 0 0 0 0 0 0 - mesh_parent.o 0 0 0 0 0 0 0 0 - mesh_route.o 0 0 0 0 0 0 0 0 - mesh_schedule.o 0 0 0 0 0 0 0 0 - mesh_timer.o 0 0 0 0 0 0 0 0 - mesh_utilities.o 0 0 0 0 0 0 0 0 - mesh_wifi.o 0 0 0 0 0 0 0 0 - ieee80211.o 0 0 0 0 0 0 0 0 - ieee80211_action.o 0 0 0 0 0 0 0 0 -ieee80211_action_vendor. 0 0 0 0 0 0 0 0 - ieee80211_api.o 0 0 0 0 0 0 0 0 - ieee80211_crypto.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 - ieee80211_debug.o 0 0 0 0 0 0 0 0 - ieee80211_ets.o 0 0 0 0 0 0 0 0 - ieee80211_hostap.o 0 0 0 0 0 0 0 0 - ieee80211_ht.o 0 0 0 0 0 0 0 0 - ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 - ieee80211_input.o 0 0 0 0 0 0 0 0 - ieee80211_ioctl.o 0 0 0 0 0 0 0 0 - ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 - ieee80211_misc.o 0 0 0 0 0 0 0 0 - ieee80211_nvs.o 0 0 0 0 0 0 0 0 - ieee80211_output.o 0 0 0 0 0 0 0 0 - ieee80211_phy.o 0 0 0 0 0 0 0 0 - ieee80211_power.o 0 0 0 0 0 0 0 0 - ieee80211_proto.o 0 0 0 0 0 0 0 0 - ieee80211_regdomain.o 0 0 0 0 0 0 0 0 - ieee80211_rfid.o 0 0 0 0 0 0 0 0 - ieee80211_scan.o 0 0 0 0 0 0 0 0 - ieee80211_sta.o 0 0 0 0 0 0 0 0 - ieee80211_timer.o 0 0 0 0 0 0 0 0 - wl_chm.o 0 0 0 0 0 0 0 0 - wl_cnx.o 0 0 0 0 0 0 0 0 - nvs_api.o 0 0 0 0 0 0 0 0 - nvs_item_hash_list.o 0 0 0 0 0 0 0 0 - nvs_page.o 0 0 0 0 0 0 0 0 - nvs_pagemanager.o 0 0 0 0 0 0 0 0 - nvs_storage.o 0 0 0 0 0 0 0 0 - nvs_types.o 0 0 0 0 0 0 0 0 - phy.o 0 0 0 0 0 0 0 0 - phy_chip_v7.o 0 0 0 0 0 0 0 0 - phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 - phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 - esf_buf.o 0 0 0 0 0 0 0 0 - if_hwctrl.o 0 0 0 0 0 0 0 0 - lmac.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 - pp.o 0 0 0 0 0 0 0 0 - pp_debug.o 0 0 0 0 0 0 0 0 - pp_timer.o 0 0 0 0 0 0 0 0 - rate_control.o 0 0 0 0 0 0 0 0 - trc.o 0 0 0 0 0 0 0 0 - wdev.o 0 0 0 0 0 0 0 0 - bt_bb.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - rtc.o 0 0 0 0 0 0 0 0 - rtc_analog.o 0 0 0 0 0 0 0 0 - smartconfig_ack.o 0 0 0 0 0 0 0 0 - gpio_periph.o 0 0 0 0 0 0 0 0 - rtc_sleep.o 0 0 0 0 0 0 0 0 - bad_alloc.o 0 0 0 0 0 0 0 0 - del_op.o 0 0 0 0 0 0 0 0 - del_opv.o 0 0 0 0 0 0 0 0 - eh_exception.o 0 0 0 0 0 0 0 0 - new_handler.o 0 0 0 0 0 0 0 0 - pure.o 0 0 0 0 0 0 0 0 - tinfo.o 0 0 0 0 0 0 0 0 - ap_config.o 0 0 0 0 0 0 0 0 - common.o 0 0 0 0 0 0 0 0 - wpa.o 0 0 0 0 0 0 0 0 - wpa_auth.o 0 0 0 0 0 0 0 0 - wpa_auth_ie.o 0 0 0 0 0 0 0 0 - wpa_common.o 0 0 0 0 0 0 0 0 - wpa_debug.o 0 0 0 0 0 0 0 0 - wpa_ie.o 0 0 0 0 0 0 0 0 - wpa_main.o 0 0 0 0 0 0 0 0 - wpabuf.o 0 0 0 0 0 0 0 0 - wpas_glue.o 0 0 0 0 0 0 0 0 - wpa2_internal.o 0 0 0 0 0 0 0 0 - os_xtensa.o 0 0 0 0 0 0 0 0 - wps_internal.o 0 0 0 0 0 0 0 0 -The following entries are present in only: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - tasks.c.o 12 700 0 5737 0 0 663 7112 - esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 - vfs_uart.c.o 116 8 0 0 0 3758 783 4665 - panic.c.o 2029 5 0 2223 0 0 0 4257 - portasm.S.o 3084 0 0 476 0 0 0 3560 - intr_alloc.c.o 8 22 0 656 0 1681 704 3071 - queue.c.o 0 0 0 2411 0 0 424 2835 - uart.c.o 56 12 0 0 0 2099 452 2619 - multi_heap.c.o 300 0 0 2245 0 0 0 2545 - cpu_start.c.o 0 1 0 1067 0 255 1073 2396 - rtc_clk.c.o 160 4 0 2104 0 0 0 2268 - vfs.c.o 192 40 0 0 0 1892 132 2256 - gpio.c.o 32 0 0 0 0 1193 970 2195 - flash_mmap.c.o 0 264 0 1320 0 125 296 2005 - spi_flash_hal_iram.c.o 24 0 0 1798 0 0 0 1822 - xtensa_vectors.S.o 8 0 0 1769 0 0 36 1813 - task_wdt.c.o 53 4 0 0 0 1223 494 1774 -spi_flash_chip_generic.c 340 0 0 1423 0 0 0 1763 - cache_utils.c.o 4 14 0 833 0 81 430 1362 - heap_caps.c.o 4 0 0 884 0 50 362 1300 - timers.c.o 8 56 0 1007 0 0 223 1294 - esp_timer_impl_lac.c.o 8 8 0 514 0 322 389 1241 - heap_caps_init.c.o 0 4 0 0 0 834 379 1217 - soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 - periph_ctrl.c.o 8 0 0 0 0 696 488 1192 - port.c.o 0 32 0 737 0 0 340 1109 - xtensa_intr_asm.S.o 1024 0 0 51 0 0 0 1075 -bootloader_flash_config_ 0 0 0 1028 0 17 0 1045 - rtc_time.c.o 0 0 0 819 0 0 194 1013 - ringbuf.c.o 0 0 0 858 0 0 150 1008 - rtc_init.c.o 0 0 0 956 0 0 0 956 - log.c.o 8 264 0 34 0 484 147 937 - time.c.o 0 32 0 123 0 719 0 874 - esp_flash_api.c.o 0 0 0 600 0 16 244 860 - partition.c.o 0 8 0 0 0 668 181 857 - clk.c.o 0 0 0 64 0 582 208 854 - esp_timer.c.o 8 12 0 280 0 401 118 819 - memory_layout_utils.c.o 0 0 0 0 0 505 295 800 - rtc_wdt.c.o 0 0 0 796 0 0 0 796 - dport_access.c.o 8 40 0 422 0 189 126 785 - ipc.c.o 0 56 0 192 0 367 117 732 - locks.c.o 8 0 0 487 0 5 84 584 - esp_flash_spi_init.c.o 120 4 0 0 0 191 261 576 - uart_hal.c.o 0 0 0 0 0 493 0 493 - crosscore_int.c.o 8 8 0 195 0 134 146 491 - flash_qio_mode.c.o 0 0 0 0 0 490 0 490 - syscall_table.c.o 144 240 0 0 0 82 0 466 - int_wdt.c.o 0 1 0 94 0 341 0 436 - system_api_esp32.c.o 0 0 0 435 0 0 0 435 - freertos_hooks.c.o 8 128 0 47 0 243 0 426 - esp_app_desc.c.o 0 0 0 109 0 12 256 377 - lib_a-locale.o 364 0 0 0 0 0 10 374 - uart_hal_iram.c.o 0 0 0 0 0 147 222 369 - xtensa_context.S.o 0 0 0 367 0 0 0 367 - esp_ota_ops.c.o 0 4 0 0 0 147 214 365 - spi_flash_hal.c.o 0 0 0 0 0 302 48 350 - brownout.c.o 0 0 0 0 0 120 203 323 - spi_flash_chip_gd.c.o 95 0 0 181 0 0 0 276 - brownout_hal.c.o 0 0 0 0 0 269 0 269 -dport_panic_highint_hdl. 12 0 0 250 0 0 0 262 - soc_hal.c.o 24 0 0 234 0 0 0 258 - rtc_module.c.o 16 8 0 0 0 231 0 255 - memspi_host_driver.c.o 43 0 0 206 0 0 0 249 - debug_helpers.c.o 0 0 0 217 0 0 0 217 - spi_flash_chip_issi.c.o 97 0 0 101 0 0 0 198 - log_freertos.c.o 0 8 0 188 0 0 0 196 -pthread_local_storage.c. 8 4 0 0 0 183 0 195 - gpio_periph.c.o 0 0 0 0 0 0 160 160 - cache_err_int.c.o 0 0 0 56 0 98 0 154 - heap.c.o 0 0 0 151 0 0 0 151 - xtensa_intr.c.o 0 0 0 113 0 0 35 148 -spi_flash_os_func_noos.c 16 0 0 127 0 0 0 143 -spi_flash_os_func_app.c. 24 0 0 91 0 25 0 140 - list.c.o 0 0 0 138 0 0 0 138 - blink.c.o 0 0 0 0 0 72 39 111 - pthread.c.o 0 8 0 0 0 81 0 89 - bootloader_mem.c.o 0 0 0 0 0 58 20 78 - cpu_util.c.o 0 0 0 75 0 0 0 75 - lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 - flash_ops.c.o 20 4 0 14 0 29 0 67 - lib_a-localeconv.o 0 0 0 0 0 63 0 63 - reent_init.c.o 0 0 0 59 0 0 0 59 - rtc_io.c.o 0 0 0 0 0 53 0 53 - syscalls.c.o 0 0 0 0 0 50 0 50 - mpu_hal.c.o 0 0 0 0 0 47 0 47 -xtensa_vector_defaults.S 0 0 0 46 0 0 0 46 - xtensa_init.c.o 0 4 0 32 0 0 0 36 -spi_flash_chip_drivers.c 20 0 0 0 0 0 0 20 - pthread.c.o 0 0 0 0 0 12 0 12 - crtend.o 0 0 0 0 0 0 8 8 - pm_esp32.c.o 0 0 0 0 0 8 0 8 - cpu_hal.c.o 0 0 0 8 0 0 0 8 - crti.o 0 0 0 3 0 3 0 6 -cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 - cxx_guards.cpp.o 0 0 0 0 0 5 0 5 - crtbegin.o 0 0 0 0 0 0 4 4 - FreeRTOS-openocd.c.o 4 0 0 0 0 0 0 4 - crt0.o 0 0 0 0 0 0 0 0 - crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 -bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 - bootloader_flash.c.o 0 0 0 0 0 0 0 0 - bootloader_random.c.o 0 0 0 0 0 0 0 0 - bootloader_sha.c.o 0 0 0 0 0 0 0 0 - bootloader_utility.c.o 0 0 0 0 0 0 0 0 - esp_image_format.c.o 0 0 0 0 0 0 0 0 - flash_partitions.c.o 0 0 0 0 0 0 0 0 - isatty.o 0 0 0 0 0 0 0 0 - lib_a-bzero.o 0 0 0 0 0 0 0 0 - lib_a-ctype_.o 0 0 0 0 0 0 0 0 - lib_a-environ.o 0 0 0 0 0 0 0 0 - lib_a-envlock.o 0 0 0 0 0 0 0 0 - lib_a-fclose.o 0 0 0 0 0 0 0 0 - lib_a-fflush.o 0 0 0 0 0 0 0 0 - lib_a-findfp.o 0 0 0 0 0 0 0 0 - lib_a-fputwc.o 0 0 0 0 0 0 0 0 - lib_a-fvwrite.o 0 0 0 0 0 0 0 0 - lib_a-fwalk.o 0 0 0 0 0 0 0 0 - lib_a-getenv_r.o 0 0 0 0 0 0 0 0 - lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 - lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 - lib_a-impure.o 0 0 0 0 0 0 0 0 - lib_a-iswspace.o 0 0 0 0 0 0 0 0 - lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 - lib_a-makebuf.o 0 0 0 0 0 0 0 0 - lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 - lib_a-memchr.o 0 0 0 0 0 0 0 0 - lib_a-memcmp.o 0 0 0 0 0 0 0 0 - lib_a-memcpy.o 0 0 0 0 0 0 0 0 - lib_a-memmove.o 0 0 0 0 0 0 0 0 - lib_a-memset.o 0 0 0 0 0 0 0 0 - lib_a-month_lengths.o 0 0 0 0 0 0 0 0 - lib_a-putc.o 0 0 0 0 0 0 0 0 - lib_a-putchar.o 0 0 0 0 0 0 0 0 - lib_a-qsort.o 0 0 0 0 0 0 0 0 - lib_a-refill.o 0 0 0 0 0 0 0 0 - lib_a-sccl.o 0 0 0 0 0 0 0 0 - lib_a-siscanf.o 0 0 0 0 0 0 0 0 - lib_a-stdio.o 0 0 0 0 0 0 0 0 - lib_a-strcmp.o 0 0 0 0 0 0 0 0 - lib_a-strcpy.o 0 0 0 0 0 0 0 0 - lib_a-strcspn.o 0 0 0 0 0 0 0 0 - lib_a-strerror_r.o 0 0 0 0 0 0 0 0 - lib_a-strlcpy.o 0 0 0 0 0 0 0 0 - lib_a-strlen.o 0 0 0 0 0 0 0 0 - lib_a-strncmp.o 0 0 0 0 0 0 0 0 - lib_a-strncpy.o 0 0 0 0 0 0 0 0 - lib_a-strstr.o 0 0 0 0 0 0 0 0 - lib_a-strtol.o 0 0 0 0 0 0 0 0 - lib_a-strtoll.o 0 0 0 0 0 0 0 0 - lib_a-strtoul.o 0 0 0 0 0 0 0 0 - lib_a-strtoull.o 0 0 0 0 0 0 0 0 - lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 - lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 - lib_a-tzlock.o 0 0 0 0 0 0 0 0 - lib_a-tzset.o 0 0 0 0 0 0 0 0 - lib_a-tzset_r.o 0 0 0 0 0 0 0 0 - lib_a-tzvars.o 0 0 0 0 0 0 0 0 - lib_a-ungetc.o 0 0 0 0 0 0 0 0 - lib_a-wbuf.o 0 0 0 0 0 0 0 0 - lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 - lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 - lib_a-wsetup.o 0 0 0 0 0 0 0 0 - spi_common.c.o 0 0 0 0 0 0 0 0 - esp_efuse_api.c.o 0 0 0 0 0 0 0 0 - esp_efuse_fields.c.o 0 0 0 0 0 0 0 0 - esp_efuse_table.c.o 0 0 0 0 0 0 0 0 - esp_efuse_utility.c.o 0 0 0 0 0 0 0 0 - hw_random.c.o 0 0 0 0 0 0 0 0 - pm_locks.c.o 0 0 0 0 0 0 0 0 - system_api.c.o 0 0 0 0 0 0 0 0 - _bswapsi2.o 0 0 0 0 0 0 0 0 - esp_sha256.c.o 0 0 0 0 0 0 0 0 - sha.c.o 0 0 0 0 0 0 0 0 - gpio_hal.c.o 0 0 0 0 0 0 0 0 - rtc_io_hal.c.o 0 0 0 0 0 0 0 0 - rtc_io_periph.c.o 0 0 0 0 0 0 0 0 - spi_periph.c.o 0 0 0 0 0 0 0 0 - uart_periph.c.o 0 0 0 0 0 0 0 0 - spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 - md5-internal.c.o 0 0 0 0 0 0 0 0 - debug_helpers_asm.S.o 0 0 0 0 0 0 0 0 - -*** -Running idf_size.py diff --files with app in reverse order... - MAP file: app2.map - MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 8580 bytes 9324 -744 - DRAM .bss size: 2024 bytes 8296 -6272 -Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) -Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) - Flash code: 77191 bytes 146944 -69753 - Flash rodata: 22360 bytes 39580 -17220 -Total image size:~ 147087 bytes (.bin may be padded larger) 234780 -87693 -Per-file contributions to ELF file: - Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total - | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- - ----------------------- ----------------------- ----------------------- ----------------------- - lib_a-vfprintf.o| | | | | | | | | | | | | | | | 13681| 14193| -512| 752| 756| -4| 14433| 14949| -516 - lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13290| 13834| -544| 752| 756| -4| 14042| 14590| -548 - lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9623| 9642| -19| 1206| 1210| -4| 10829| 10852| -23 - lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 734| 738| -4| 10667| 10671| -4 - lib_a-dtoa.o| | | | | | | | | | | | | | | | 3524| 3522| +2| 13| 13| | 3537| 3535| +2 - lib_a-mprec.o| | | | | | | | | | | | | | | | 2140| 2134| +6| 296| 296| | 2436| 2430| +6 - lib_a-fseeko.o| | | | | | | | | | | | | | | | 918| 862| +56| | | | 918| 862| +56 - windowspill_asm.o| | | | | | | | | | 315| 311| +4| | | | | | | | | | 315| 311| +4 - lib_a-puts.o| | | | | | | | | | | | | | | | 234| 182| +52| 60| 60| | 294| 242| +52 - lib_a-fopen.o| | | | | | | | | | | | | | | | 244| 228| +16| | | | 244| 228| +16 - lib_a-reent.o| | | | | | | | | | | | | | | | 236| 232| +4| | | | 236| 232| +4 - lib_a-snprintf.o| | | | | | | | | | | | | | | | 217| | +217| | | | 217| | +217 - lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| - lib_a-flags.o| | | | | | | | | | | | | | | | 128| 127| +1| | | | 128| 127| +1 - lib_a-s_frexp.o| | | | | | | | | | | | | | | | 100| 110| -10| | | | 100| 110| -10 - lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| - lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| -state_asm--restore_extra| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| -state_asm--save_extra_nw| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| - lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| - _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| - interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| - lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| - int_asm--set_intclear.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| - lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-printf.o| | | | | | | | | | | | | | | | | 116| -116| | | | | 116| -116 - lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | - lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | - _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | - _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | - _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | - _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | - _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | -The following entries are present in only: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - tasks.c.o 12 700 0 5737 0 0 663 7112 - esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 - vfs_uart.c.o 116 8 0 0 0 3758 783 4665 - panic.c.o 2029 5 0 2223 0 0 0 4257 - portasm.S.o 3084 0 0 476 0 0 0 3560 - intr_alloc.c.o 8 22 0 656 0 1681 704 3071 - queue.c.o 0 0 0 2411 0 0 424 2835 - uart.c.o 56 12 0 0 0 2099 452 2619 - multi_heap.c.o 300 0 0 2245 0 0 0 2545 - cpu_start.c.o 0 1 0 1067 0 255 1073 2396 - rtc_clk.c.o 160 4 0 2104 0 0 0 2268 - vfs.c.o 192 40 0 0 0 1892 132 2256 - gpio.c.o 32 0 0 0 0 1193 970 2195 - flash_mmap.c.o 0 264 0 1320 0 125 296 2005 - spi_flash_hal_iram.c.o 24 0 0 1798 0 0 0 1822 - xtensa_vectors.S.o 8 0 0 1769 0 0 36 1813 - task_wdt.c.o 53 4 0 0 0 1223 494 1774 -spi_flash_chip_generic.c 340 0 0 1423 0 0 0 1763 - cache_utils.c.o 4 14 0 833 0 81 430 1362 - heap_caps.c.o 4 0 0 884 0 50 362 1300 - timers.c.o 8 56 0 1007 0 0 223 1294 - esp_timer_impl_lac.c.o 8 8 0 514 0 322 389 1241 - heap_caps_init.c.o 0 4 0 0 0 834 379 1217 - soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 - periph_ctrl.c.o 8 0 0 0 0 696 488 1192 - port.c.o 0 32 0 737 0 0 340 1109 - xtensa_intr_asm.S.o 1024 0 0 51 0 0 0 1075 -bootloader_flash_config_ 0 0 0 1028 0 17 0 1045 - rtc_time.c.o 0 0 0 819 0 0 194 1013 - ringbuf.c.o 0 0 0 858 0 0 150 1008 - rtc_init.c.o 0 0 0 956 0 0 0 956 - log.c.o 8 264 0 34 0 484 147 937 - time.c.o 0 32 0 123 0 719 0 874 - esp_flash_api.c.o 0 0 0 600 0 16 244 860 - partition.c.o 0 8 0 0 0 668 181 857 - clk.c.o 0 0 0 64 0 582 208 854 - esp_timer.c.o 8 12 0 280 0 401 118 819 - memory_layout_utils.c.o 0 0 0 0 0 505 295 800 - rtc_wdt.c.o 0 0 0 796 0 0 0 796 - dport_access.c.o 8 40 0 422 0 189 126 785 - ipc.c.o 0 56 0 192 0 367 117 732 - locks.c.o 8 0 0 487 0 5 84 584 - esp_flash_spi_init.c.o 120 4 0 0 0 191 261 576 - uart_hal.c.o 0 0 0 0 0 493 0 493 - crosscore_int.c.o 8 8 0 195 0 134 146 491 - flash_qio_mode.c.o 0 0 0 0 0 490 0 490 - syscall_table.c.o 144 240 0 0 0 82 0 466 - int_wdt.c.o 0 1 0 94 0 341 0 436 - system_api_esp32.c.o 0 0 0 435 0 0 0 435 - freertos_hooks.c.o 8 128 0 47 0 243 0 426 - esp_app_desc.c.o 0 0 0 109 0 12 256 377 - lib_a-locale.o 364 0 0 0 0 0 10 374 - uart_hal_iram.c.o 0 0 0 0 0 147 222 369 - xtensa_context.S.o 0 0 0 367 0 0 0 367 - esp_ota_ops.c.o 0 4 0 0 0 147 214 365 - spi_flash_hal.c.o 0 0 0 0 0 302 48 350 - brownout.c.o 0 0 0 0 0 120 203 323 - spi_flash_chip_gd.c.o 95 0 0 181 0 0 0 276 - brownout_hal.c.o 0 0 0 0 0 269 0 269 -dport_panic_highint_hdl. 12 0 0 250 0 0 0 262 - soc_hal.c.o 24 0 0 234 0 0 0 258 - rtc_module.c.o 16 8 0 0 0 231 0 255 - memspi_host_driver.c.o 43 0 0 206 0 0 0 249 - debug_helpers.c.o 0 0 0 217 0 0 0 217 - spi_flash_chip_issi.c.o 97 0 0 101 0 0 0 198 - log_freertos.c.o 0 8 0 188 0 0 0 196 -pthread_local_storage.c. 8 4 0 0 0 183 0 195 - gpio_periph.c.o 0 0 0 0 0 0 160 160 - cache_err_int.c.o 0 0 0 56 0 98 0 154 - heap.c.o 0 0 0 151 0 0 0 151 - xtensa_intr.c.o 0 0 0 113 0 0 35 148 -spi_flash_os_func_noos.c 16 0 0 127 0 0 0 143 -spi_flash_os_func_app.c. 24 0 0 91 0 25 0 140 - list.c.o 0 0 0 138 0 0 0 138 - blink.c.o 0 0 0 0 0 72 39 111 - pthread.c.o 0 8 0 0 0 81 0 89 - bootloader_mem.c.o 0 0 0 0 0 58 20 78 - cpu_util.c.o 0 0 0 75 0 0 0 75 - lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 - flash_ops.c.o 20 4 0 14 0 29 0 67 - lib_a-localeconv.o 0 0 0 0 0 63 0 63 - reent_init.c.o 0 0 0 59 0 0 0 59 - rtc_io.c.o 0 0 0 0 0 53 0 53 - syscalls.c.o 0 0 0 0 0 50 0 50 - mpu_hal.c.o 0 0 0 0 0 47 0 47 -xtensa_vector_defaults.S 0 0 0 46 0 0 0 46 - xtensa_init.c.o 0 4 0 32 0 0 0 36 -spi_flash_chip_drivers.c 20 0 0 0 0 0 0 20 - pthread.c.o 0 0 0 0 0 12 0 12 - crtend.o 0 0 0 0 0 0 8 8 - pm_esp32.c.o 0 0 0 0 0 8 0 8 - cpu_hal.c.o 0 0 0 8 0 0 0 8 - crti.o 0 0 0 3 0 3 0 6 -cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 - cxx_guards.cpp.o 0 0 0 0 0 5 0 5 - crtbegin.o 0 0 0 0 0 0 4 4 - FreeRTOS-openocd.c.o 4 0 0 0 0 0 0 4 - crt0.o 0 0 0 0 0 0 0 0 - crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 -bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 - bootloader_flash.c.o 0 0 0 0 0 0 0 0 - bootloader_random.c.o 0 0 0 0 0 0 0 0 - bootloader_sha.c.o 0 0 0 0 0 0 0 0 - bootloader_utility.c.o 0 0 0 0 0 0 0 0 - esp_image_format.c.o 0 0 0 0 0 0 0 0 - flash_partitions.c.o 0 0 0 0 0 0 0 0 - isatty.o 0 0 0 0 0 0 0 0 - lib_a-bzero.o 0 0 0 0 0 0 0 0 - lib_a-ctype_.o 0 0 0 0 0 0 0 0 - lib_a-environ.o 0 0 0 0 0 0 0 0 - lib_a-envlock.o 0 0 0 0 0 0 0 0 - lib_a-fclose.o 0 0 0 0 0 0 0 0 - lib_a-fflush.o 0 0 0 0 0 0 0 0 - lib_a-findfp.o 0 0 0 0 0 0 0 0 - lib_a-fputwc.o 0 0 0 0 0 0 0 0 - lib_a-fvwrite.o 0 0 0 0 0 0 0 0 - lib_a-fwalk.o 0 0 0 0 0 0 0 0 - lib_a-getenv_r.o 0 0 0 0 0 0 0 0 - lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 - lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 - lib_a-impure.o 0 0 0 0 0 0 0 0 - lib_a-iswspace.o 0 0 0 0 0 0 0 0 - lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 - lib_a-makebuf.o 0 0 0 0 0 0 0 0 - lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 - lib_a-memchr.o 0 0 0 0 0 0 0 0 - lib_a-memcmp.o 0 0 0 0 0 0 0 0 - lib_a-memcpy.o 0 0 0 0 0 0 0 0 - lib_a-memmove.o 0 0 0 0 0 0 0 0 - lib_a-memset.o 0 0 0 0 0 0 0 0 - lib_a-month_lengths.o 0 0 0 0 0 0 0 0 - lib_a-putc.o 0 0 0 0 0 0 0 0 - lib_a-putchar.o 0 0 0 0 0 0 0 0 - lib_a-qsort.o 0 0 0 0 0 0 0 0 - lib_a-refill.o 0 0 0 0 0 0 0 0 - lib_a-sccl.o 0 0 0 0 0 0 0 0 - lib_a-siscanf.o 0 0 0 0 0 0 0 0 - lib_a-stdio.o 0 0 0 0 0 0 0 0 - lib_a-strcmp.o 0 0 0 0 0 0 0 0 - lib_a-strcpy.o 0 0 0 0 0 0 0 0 - lib_a-strcspn.o 0 0 0 0 0 0 0 0 - lib_a-strerror_r.o 0 0 0 0 0 0 0 0 - lib_a-strlcpy.o 0 0 0 0 0 0 0 0 - lib_a-strlen.o 0 0 0 0 0 0 0 0 - lib_a-strncmp.o 0 0 0 0 0 0 0 0 - lib_a-strncpy.o 0 0 0 0 0 0 0 0 - lib_a-strstr.o 0 0 0 0 0 0 0 0 - lib_a-strtol.o 0 0 0 0 0 0 0 0 - lib_a-strtoll.o 0 0 0 0 0 0 0 0 - lib_a-strtoul.o 0 0 0 0 0 0 0 0 - lib_a-strtoull.o 0 0 0 0 0 0 0 0 - lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 - lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 - lib_a-tzlock.o 0 0 0 0 0 0 0 0 - lib_a-tzset.o 0 0 0 0 0 0 0 0 - lib_a-tzset_r.o 0 0 0 0 0 0 0 0 - lib_a-tzvars.o 0 0 0 0 0 0 0 0 - lib_a-ungetc.o 0 0 0 0 0 0 0 0 - lib_a-wbuf.o 0 0 0 0 0 0 0 0 - lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 - lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 - lib_a-wsetup.o 0 0 0 0 0 0 0 0 - spi_common.c.o 0 0 0 0 0 0 0 0 - esp_efuse_api.c.o 0 0 0 0 0 0 0 0 - esp_efuse_fields.c.o 0 0 0 0 0 0 0 0 - esp_efuse_table.c.o 0 0 0 0 0 0 0 0 - esp_efuse_utility.c.o 0 0 0 0 0 0 0 0 - hw_random.c.o 0 0 0 0 0 0 0 0 - pm_locks.c.o 0 0 0 0 0 0 0 0 - system_api.c.o 0 0 0 0 0 0 0 0 - _bswapsi2.o 0 0 0 0 0 0 0 0 - esp_sha256.c.o 0 0 0 0 0 0 0 0 - sha.c.o 0 0 0 0 0 0 0 0 - gpio_hal.c.o 0 0 0 0 0 0 0 0 - rtc_io_hal.c.o 0 0 0 0 0 0 0 0 - rtc_io_periph.c.o 0 0 0 0 0 0 0 0 - spi_periph.c.o 0 0 0 0 0 0 0 0 - uart_periph.c.o 0 0 0 0 0 0 0 0 - spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 - md5-internal.c.o 0 0 0 0 0 0 0 0 - debug_helpers_asm.S.o 0 0 0 0 0 0 0 0 -The following entries are present in only: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - nd6.o 8 1027 0 0 0 8427 136 9598 - tcp_in.o 0 54 0 0 0 8127 916 9097 - tasks.o 20 700 0 5667 0 0 503 6890 - tcp_out.o 0 0 0 0 0 5060 1124 6184 - sockets.o 0 728 0 0 0 4627 824 6179 - tcp.o 4 23 0 0 0 4290 1384 5701 - api_msg.o 0 0 0 0 0 3763 1366 5129 - dhcp.o 0 8 0 0 0 3456 1401 4865 - panic.o 2579 5 0 2145 0 0 0 4729 - esp_err_to_name.o 0 0 0 0 0 50 4091 4141 - unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 - pbuf.o 0 1 0 0 0 2453 1161 3615 - portasm.o 3084 0 0 480 0 0 0 3564 - etharp.o 0 241 0 0 0 2618 658 3517 - ip6.o 0 0 0 0 0 3212 124 3336 - dns.o 0 1292 0 0 0 1809 206 3307 - spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 - udp.o 2 4 0 0 0 3020 216 3242 - intr_alloc.o 8 22 0 726 0 1749 710 3215 - multi_heap.o 857 0 0 2217 0 0 0 3074 - queue.o 8 56 0 2569 0 0 369 3002 - flash_ops.o 32 41 0 2352 0 99 0 2524 - unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 - rtc_clk.o 660 8 0 1794 0 0 0 2462 - vfs.o 192 40 0 0 0 1995 132 2359 - ip6_frag.o 0 6 0 0 0 1905 442 2353 - api_lib.o 0 0 0 0 0 1425 919 2344 - igmp.o 0 12 0 0 0 1604 707 2323 - dbg_stubs.o 0 2072 0 32 0 100 0 2204 - vfs_uart.o 40 63 0 0 0 1775 271 2149 - unity_platform.o 0 13 0 0 0 1511 600 2124 - esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 - rtc_periph.o 0 0 0 0 0 0 2080 2080 - flash_mmap.o 0 296 0 1298 0 124 327 2045 - heap_caps.o 4 0 0 1195 0 188 593 1980 - eh_personality.o 0 0 0 0 0 1561 384 1945 - ip4.o 0 6 0 0 0 1664 139 1809 - netif.o 0 241 0 0 0 1239 287 1767 - xtensa_vectors.o 8 0 0 1697 0 0 36 1741 - cpu_start.o 0 1 0 806 0 277 486 1570 - clk.o 0 0 0 67 0 581 893 1541 - timers.o 8 56 0 1149 0 0 233 1446 - sys_arch.o 0 8 0 0 0 1216 222 1446 - multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 - heap_caps_init.o 0 4 0 0 0 1030 387 1421 - mld6.o 0 4 0 0 0 1334 0 1338 - cache_utils.o 4 14 0 836 0 81 390 1325 - raw.o 0 4 0 0 0 1087 223 1314 - esp_timer.o 8 20 0 702 0 429 142 1301 - log.o 8 268 0 456 0 396 166 1294 - system_api.o 0 8 0 589 0 0 662 1259 - soc_memory_layout.o 0 0 0 0 0 0 1239 1239 - icmp.o 0 0 0 0 0 769 371 1140 - xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 - port.o 0 16 0 617 0 0 369 1002 - pthread.o 8 8 0 174 0 298 512 1000 - icmp6.o 0 0 0 0 0 863 127 990 - rtc_init.o 0 0 0 980 0 0 0 980 - unity.o 0 108 0 0 0 767 90 965 - rtc_time.o 0 0 0 803 0 0 137 940 - dport_access.o 8 40 0 539 0 189 129 905 - time.o 0 32 0 139 0 691 0 862 - tcpip.o 0 16 0 0 0 644 191 851 - esp_ota_ops.o 0 0 0 0 0 123 717 840 - periph_ctrl.o 8 0 0 0 0 520 256 784 - timers.o 0 12 0 0 0 638 131 781 - partition.o 0 8 0 0 0 582 141 731 - locks.o 8 0 0 552 0 0 84 644 - ipc.o 0 36 0 159 0 329 104 628 - tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 - pthread_local_storage.o 8 4 0 0 0 476 126 614 - inet_chksum.o 0 0 0 0 0 580 0 580 - crosscore_int.o 8 8 0 204 0 126 148 494 - netbuf.o 0 0 0 0 0 154 326 480 - vfs_lwip.o 0 0 0 0 0 307 155 462 - syscall_table.o 144 240 0 0 0 67 0 451 - timer.o 16 0 0 0 0 112 281 409 - int_wdt.o 0 1 0 87 0 301 0 389 - eh_globals.o 0 16 0 0 0 149 193 358 - brownout.o 0 0 0 0 0 145 191 336 - freertos_hooks.o 8 128 0 43 0 137 0 316 - cpu_util.o 0 0 0 310 0 0 0 310 - rtc_module.o 8 8 0 0 0 291 0 307 - xtensa_context.o 0 0 0 299 0 0 0 299 - eh_terminate.o 0 0 0 0 0 117 141 258 - ethernet.o 0 0 0 0 0 244 12 256 -dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 - dhcpserver.o 0 4 0 0 0 203 0 207 - test_utils.o 0 0 0 0 0 38 140 178 - lib_a-sprintf.o 0 0 0 0 0 167 0 167 - cache_err_int.o 0 0 0 56 0 98 0 154 - list.o 0 0 0 142 0 0 0 142 - xtensa_intr.o 0 0 0 104 0 0 35 139 - syscalls.o 0 0 0 94 0 45 0 139 - si_class_type_info.o 0 0 0 0 0 0 136 136 - ip4_addr.o 0 0 0 0 0 72 40 112 - class_type_info.o 0 0 0 0 0 0 112 112 - ip.o 0 60 0 0 0 50 0 110 - memp.o 0 0 0 0 0 0 108 108 - lib2funcs.o 0 0 0 104 0 0 0 104 - lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 - def.o 0 0 0 0 0 91 0 91 - hw_random.o 0 4 0 74 0 0 0 78 - stack_check.o 0 4 0 0 0 32 42 78 - clock.o 0 0 0 72 0 0 0 72 - reent_init.o 0 0 0 68 0 0 2 70 - app_main.o 0 0 0 0 0 53 10 63 - uart.o 8 12 0 0 0 38 0 58 - new_opv.o 0 0 0 0 0 0 56 56 -xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 - new_op.o 0 0 0 0 0 0 40 40 - xtensa_init.o 0 4 0 32 0 0 0 36 - init.o 0 0 0 0 0 27 0 27 - wifi_init.o 0 0 0 0 0 17 9 26 - ip6_addr.o 0 0 0 0 0 0 20 20 - eri.o 0 0 0 8 0 0 0 8 - cxx_exception_stubs.o 0 0 0 0 0 6 0 6 - cxx_guards.o 0 0 0 0 0 5 0 5 - FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 - eh_term_handler.o 4 0 0 0 0 0 0 4 - eh_unex_handler.o 4 0 0 0 0 0 0 4 - bootloader_flash.o 0 0 0 0 0 0 0 0 - bootloader_sha.o 0 0 0 0 0 0 0 0 - esp_image_format.o 0 0 0 0 0 0 0 0 - lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 - lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 - coexist_api.o 0 0 0 0 0 0 0 0 - coexist_arbit.o 0 0 0 0 0 0 0 0 - coexist_core.o 0 0 0 0 0 0 0 0 - coexist_dbg.o 0 0 0 0 0 0 0 0 - coexist_hw.o 0 0 0 0 0 0 0 0 - coexist_param.o 0 0 0 0 0 0 0 0 - coexist_timer.o 0 0 0 0 0 0 0 0 - misc_nvs.o 0 0 0 0 0 0 0 0 - gpio.o 0 0 0 0 0 0 0 0 - ets_timer_legacy.o 0 0 0 0 0 0 0 0 -event_default_handlers.o 0 0 0 0 0 0 0 0 - event_loop.o 0 0 0 0 0 0 0 0 - lib_printf.o 0 0 0 0 0 0 0 0 - phy_init.o 0 0 0 0 0 0 0 0 - sha.o 0 0 0 0 0 0 0 0 - wifi_os_adapter.o 0 0 0 0 0 0 0 0 - emac_dev.o 0 0 0 0 0 0 0 0 - emac_main.o 0 0 0 0 0 0 0 0 - event_groups.o 0 0 0 0 0 0 0 0 - ringbuf.o 0 0 0 0 0 0 0 0 - _divsf3.o 0 0 0 0 0 0 0 0 - _extendsfdf2.o 0 0 0 0 0 0 0 0 - _floatdidf.o 0 0 0 0 0 0 0 0 - _floatdisf.o 0 0 0 0 0 0 0 0 - ethernetif.o 0 0 0 0 0 0 0 0 - ethip6.o 0 0 0 0 0 0 0 0 - wlanif.o 0 0 0 0 0 0 0 0 - esp_sha256.o 0 0 0 0 0 0 0 0 - mesh.o 0 0 0 0 0 0 0 0 - mesh_common.o 0 0 0 0 0 0 0 0 - mesh_config.o 0 0 0 0 0 0 0 0 - mesh_main.o 0 0 0 0 0 0 0 0 - mesh_parent.o 0 0 0 0 0 0 0 0 - mesh_route.o 0 0 0 0 0 0 0 0 - mesh_schedule.o 0 0 0 0 0 0 0 0 - mesh_timer.o 0 0 0 0 0 0 0 0 - mesh_utilities.o 0 0 0 0 0 0 0 0 - mesh_wifi.o 0 0 0 0 0 0 0 0 - ieee80211.o 0 0 0 0 0 0 0 0 - ieee80211_action.o 0 0 0 0 0 0 0 0 -ieee80211_action_vendor. 0 0 0 0 0 0 0 0 - ieee80211_api.o 0 0 0 0 0 0 0 0 - ieee80211_crypto.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 - ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 - ieee80211_debug.o 0 0 0 0 0 0 0 0 - ieee80211_ets.o 0 0 0 0 0 0 0 0 - ieee80211_hostap.o 0 0 0 0 0 0 0 0 - ieee80211_ht.o 0 0 0 0 0 0 0 0 - ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 - ieee80211_input.o 0 0 0 0 0 0 0 0 - ieee80211_ioctl.o 0 0 0 0 0 0 0 0 - ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 - ieee80211_misc.o 0 0 0 0 0 0 0 0 - ieee80211_nvs.o 0 0 0 0 0 0 0 0 - ieee80211_output.o 0 0 0 0 0 0 0 0 - ieee80211_phy.o 0 0 0 0 0 0 0 0 - ieee80211_power.o 0 0 0 0 0 0 0 0 - ieee80211_proto.o 0 0 0 0 0 0 0 0 - ieee80211_regdomain.o 0 0 0 0 0 0 0 0 - ieee80211_rfid.o 0 0 0 0 0 0 0 0 - ieee80211_scan.o 0 0 0 0 0 0 0 0 - ieee80211_sta.o 0 0 0 0 0 0 0 0 - ieee80211_timer.o 0 0 0 0 0 0 0 0 - wl_chm.o 0 0 0 0 0 0 0 0 - wl_cnx.o 0 0 0 0 0 0 0 0 - nvs_api.o 0 0 0 0 0 0 0 0 - nvs_item_hash_list.o 0 0 0 0 0 0 0 0 - nvs_page.o 0 0 0 0 0 0 0 0 - nvs_pagemanager.o 0 0 0 0 0 0 0 0 - nvs_storage.o 0 0 0 0 0 0 0 0 - nvs_types.o 0 0 0 0 0 0 0 0 - phy.o 0 0 0 0 0 0 0 0 - phy_chip_v7.o 0 0 0 0 0 0 0 0 - phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 - phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 - esf_buf.o 0 0 0 0 0 0 0 0 - if_hwctrl.o 0 0 0 0 0 0 0 0 - lmac.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 - pp.o 0 0 0 0 0 0 0 0 - pp_debug.o 0 0 0 0 0 0 0 0 - pp_timer.o 0 0 0 0 0 0 0 0 - rate_control.o 0 0 0 0 0 0 0 0 - trc.o 0 0 0 0 0 0 0 0 - wdev.o 0 0 0 0 0 0 0 0 - bt_bb.o 0 0 0 0 0 0 0 0 - pm.o 0 0 0 0 0 0 0 0 - rtc.o 0 0 0 0 0 0 0 0 - rtc_analog.o 0 0 0 0 0 0 0 0 - smartconfig_ack.o 0 0 0 0 0 0 0 0 - gpio_periph.o 0 0 0 0 0 0 0 0 - rtc_sleep.o 0 0 0 0 0 0 0 0 - bad_alloc.o 0 0 0 0 0 0 0 0 - del_op.o 0 0 0 0 0 0 0 0 - del_opv.o 0 0 0 0 0 0 0 0 - eh_exception.o 0 0 0 0 0 0 0 0 - new_handler.o 0 0 0 0 0 0 0 0 - pure.o 0 0 0 0 0 0 0 0 - tinfo.o 0 0 0 0 0 0 0 0 - ap_config.o 0 0 0 0 0 0 0 0 - common.o 0 0 0 0 0 0 0 0 - wpa.o 0 0 0 0 0 0 0 0 - wpa_auth.o 0 0 0 0 0 0 0 0 - wpa_auth_ie.o 0 0 0 0 0 0 0 0 - wpa_common.o 0 0 0 0 0 0 0 0 - wpa_debug.o 0 0 0 0 0 0 0 0 - wpa_ie.o 0 0 0 0 0 0 0 0 - wpa_main.o 0 0 0 0 0 0 0 0 - wpabuf.o 0 0 0 0 0 0 0 0 - wpas_glue.o 0 0 0 0 0 0 0 0 - wpa2_internal.o 0 0 0 0 0 0 0 0 - os_xtensa.o 0 0 0 0 0 0 0 0 - wps_internal.o 0 0 0 0 0 0 0 0 - -*** -Running idf_size.py diff --archive_details with bootloader... - MAP file: app.map - MAP file: bootloader.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 4 +9320 - DRAM .bss size: 8296 bytes 48 +8248 - DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) - Flash code: 146944 bytes 0 +146944 - Flash rodata: 39580 bytes 0 +39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 11609 +223171 +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) + .data size: 9324 bytes + .bss size: 8296 bytes +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) + .text size: 37908 bytes + .vectors size: 1024 bytes +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) + .data size: 9324 bytes + .bss size: 8296 bytes + .text size: 37908 bytes + .vectors size: 1024 bytes +Used Flash size : 186524 bytes + .text : 146944 bytes + .rodata : 39580 bytes +Total image size: 283036 bytes (.bin may be padded larger) Symbols within the archive: libdriver.a (Not all symbols may be reported) .dram0.bss - @@ -2391,20 +461,2157 @@ Section total: 0 0 .noinit - Section total: 0 0 +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + +*** +Running idf_size.py diff with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 7212 +10408 (+104792 remain, +115200 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .rodata size: 0 bytes 7160 -7160 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 18796 +20136 ( +13656 remain, +33792 total) + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 26008 +30544 (+118448 remain, +148992 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 + .rodata size: 0 bytes 7160 -7160 +Used Flash size : 186524 bytes 0 +186524 + .text : 146944 bytes 0 +146944 + .rodata : 39580 bytes 0 +39580 +Total image size: 283036 bytes (.bin may be padded larger) 51920 +231116 + +*** +Running idf_size.py diff with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 17620 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38932 ( +0 remain, +0 total) + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 56552 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used Flash size : 186524 bytes 186524 + .text : 146944 bytes 146944 + .rodata : 39580 bytes 39580 +Total image size: 283036 bytes (.bin may be padded larger) 283036 + +*** +Running idf_size.py diff with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 10604 +7016 ( -7016 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38959 -27 ( +27 remain, +0 total) + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 49563 +6989 ( -6989 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used Flash size : 186524 bytes 99551 +86973 + .text : 146944 bytes 77191 +69753 + .rodata : 39580 bytes 22360 +17220 +Total image size: 283036 bytes (.bin may be padded larger) 194629 +88407 + +*** +Running idf_size.py diff with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 10604 bytes ( 170132 remain, 5.9% used) 17620 -7016 ( +7016 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 +Used static IRAM: 38959 bytes ( 92113 remain, 29.7% used) 38932 +27 ( -27 remain, +0 total) + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used stat D/IRAM: 49563 bytes ( 262245 remain, 15.9% used) 56552 -6989 ( +6989 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used Flash size : 99551 bytes 186524 -86973 + .text : 77191 bytes 146944 -69753 + .rodata : 22360 bytes 39580 -17220 +Total image size: 194629 bytes (.bin may be padded larger) 283036 -88407 + +*** +Running idf_size.py diff --archives with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 7212 +10408 (+104792 remain, +115200 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .rodata size: 0 bytes 7160 -7160 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 18796 +20136 ( +13656 remain, +33792 total) + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 26008 +30544 (+118448 remain, +148992 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 + .rodata size: 0 bytes 7160 -7160 +Used Flash size : 186524 bytes 0 +186524 + .text : 146944 bytes 0 +146944 + .rodata : 39580 bytes 0 +39580 +Total image size: 283036 bytes (.bin may be padded larger) 51920 +231116 +Per-archive contributions to ELF file: + Archive File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- ----------------------- ----------------------- + libc.a| | | | | | | | | | | | | | | | | | | | | | | | | 55583| | +55583| 3709| | +3709| 59292| | +59292 + libspi_flash.a| 36| | +36| 359| | +359| | | | | | | 7004| | +7004| | | | | 2110| -2110| 7399| 2110| +5289| 886| | +886| 1624| | +1624| 9550| 2110| +7440 + libsoc.a| 660| | +660| 8| 4| +4| | 916| -916| | 1779| -1779| 3887| | +3887| | | | | 2945| -2945| 4555| 5644| -1089| | | | 3456| | +3456| 8003| 5640| +2363 + libgcc.a| 4| | +4| 20| | +20| | | | | | | 104| | +104| | | | | | | 128| | +128| 5488| | +5488| 888| | +888| 6484| | +6484 + liblog.a| 8| | +8| 268| | +268| | | | | | | 456| | +456| | | | | 34| -34| 732| 34| +698| 396| | +396| 166| | +166| 1026| 34| +992 + libmain.a| | | | | | | | 59| -59| | 143| -143| | | | | | | | | | | 202| -202| 53| | +53| 10| | +10| 63| 202| -139 + libbootloader_support.a| | 4| -4| | 38| -38| | 6095| -6095| | 2477| -2477| | | | | | | | 9120| -9120| | 17734| -17734| | | | | | | | 17696| -17696 +The following entries are present in only: + Archive File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total + liblwip.a 14 3751 0 0 0 0 0 3765 66978 13936 80928 + libesp32.a 2635 2375 0 0 7758 0 0 12768 4814 8133 23340 + libfreertos.a 4156 832 0 0 12428 425 0 17841 0 1545 18554 + libheap.a 1331 4 0 0 4376 0 0 5711 1218 980 7905 + libvfs.a 232 103 0 0 0 0 0 335 3770 403 4405 + libunity.a 0 121 0 0 0 0 0 121 2316 830 3146 + libstdc++.a 8 16 0 0 0 0 0 24 1827 1062 2897 + libnewlib.a 152 272 0 0 853 0 0 1277 803 86 1894 + libpthread.a 16 12 0 0 174 0 0 202 774 638 1602 + libdriver.a 40 20 0 0 0 0 0 60 961 537 1538 + libapp_update.a 0 0 0 0 0 0 0 0 123 717 840 + libhal.a 0 0 0 0 515 0 0 515 0 32 547 + libtcpip_adapter.a 0 81 0 0 0 0 0 81 180 359 539 + libm.a 0 0 0 0 92 0 0 92 0 0 92 + libcxx.a 0 0 0 0 0 0 0 0 11 0 11 +libxtensa-debug-module.a 0 0 0 0 8 0 0 8 0 0 8 + libcoexist.a 0 0 0 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 0 0 0 + libwpa_supplicant.a 0 0 0 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 0 0 0 +The following entries are present in only: + Archive File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total + (exe) 0 0 16 3 0 0 3 22 0 0 22 + libsoc_esp32.a 0 0 0 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --archives with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 17620 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38932 ( +0 remain, +0 total) + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 56552 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used Flash size : 186524 bytes 186524 + .text : 146944 bytes 146944 + .rodata : 39580 bytes 39580 +Total image size: 283036 bytes (.bin may be padded larger) 283036 +Per-archive contributions to ELF file: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + liblwip.a| 14| 14| | 3751| 3751| | | | | | | | 3765| 3765| | 66978| 66978| | 13936| 13936| | 80928| 80928| + libc.a| | | | | | | | | | | | | | | | 55583| 55583| | 3709| 3709| | 59292| 59292| + libesp32.a| 2635| 2635| | 2375| 2375| | 7758| 7758| | | | | 12768| 12768| | 4814| 4814| | 8133| 8133| | 23340| 23340| + libfreertos.a| 4156| 4156| | 832| 832| | 12428| 12428| | 425| 425| | 17841| 17841| | | | | 1545| 1545| | 18554| 18554| + libspi_flash.a| 36| 36| | 359| 359| | 7004| 7004| | | | | 7399| 7399| | 886| 886| | 1624| 1624| | 9550| 9550| + libsoc.a| 660| 660| | 8| 8| | 3887| 3887| | | | | 4555| 4555| | | | | 3456| 3456| | 8003| 8003| + libheap.a| 1331| 1331| | 4| 4| | 4376| 4376| | | | | 5711| 5711| | 1218| 1218| | 980| 980| | 7905| 7905| + libgcc.a| 4| 4| | 20| 20| | 104| 104| | | | | 128| 128| | 5488| 5488| | 888| 888| | 6484| 6484| + libvfs.a| 232| 232| | 103| 103| | | | | | | | 335| 335| | 3770| 3770| | 403| 403| | 4405| 4405| + libunity.a| | | | 121| 121| | | | | | | | 121| 121| | 2316| 2316| | 830| 830| | 3146| 3146| + libstdc++.a| 8| 8| | 16| 16| | | | | | | | 24| 24| | 1827| 1827| | 1062| 1062| | 2897| 2897| + libnewlib.a| 152| 152| | 272| 272| | 853| 853| | | | | 1277| 1277| | 803| 803| | 86| 86| | 1894| 1894| + libpthread.a| 16| 16| | 12| 12| | 174| 174| | | | | 202| 202| | 774| 774| | 638| 638| | 1602| 1602| + libdriver.a| 40| 40| | 20| 20| | | | | | | | 60| 60| | 961| 961| | 537| 537| | 1538| 1538| + liblog.a| 8| 8| | 268| 268| | 456| 456| | | | | 732| 732| | 396| 396| | 166| 166| | 1026| 1026| + libapp_update.a| | | | | | | | | | | | | | | | 123| 123| | 717| 717| | 840| 840| + libhal.a| | | | | | | 515| 515| | | | | 515| 515| | | | | 32| 32| | 547| 547| + libtcpip_adapter.a| | | | 81| 81| | | | | | | | 81| 81| | 180| 180| | 359| 359| | 539| 539| + libm.a| | | | | | | 92| 92| | | | | 92| 92| | | | | | | | 92| 92| + libmain.a| | | | | | | | | | | | | | | | 53| 53| | 10| 10| | 63| 63| + libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| +libxtensa-debug-module.a| | | | | | | 8| 8| | | | | 8| 8| | | | | | | | 8| 8| + libbootloader_support.a| | | | | | | | | | | | | | | | | | | | | | | | + libcoexist.a| | | | | | | | | | | | | | | | | | | | | | | | + libcore.a| | | | | | | | | | | | | | | | | | | | | | | | + libethernet.a| | | | | | | | | | | | | | | | | | | | | | | | + libmbedtls.a| | | | | | | | | | | | | | | | | | | | | | | | + libmesh.a| | | | | | | | | | | | | | | | | | | | | | | | + libnet80211.a| | | | | | | | | | | | | | | | | | | | | | | | + libnvs_flash.a| | | | | | | | | | | | | | | | | | | | | | | | + libphy.a| | | | | | | | | | | | | | | | | | | | | | | | + libpp.a| | | | | | | | | | | | | | | | | | | | | | | | + librtc.a| | | | | | | | | | | | | | | | | | | | | | | | + libsmartconfig_ack.a| | | | | | | | | | | | | | | | | | | | | | | | + libwpa.a| | | | | | | | | | | | | | | | | | | | | | | | + libwpa2.a| | | | | | | | | | | | | | | | | | | | | | | | + libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | + libwps.a| | | | | | | | | | | | | | | | | | | | | | | | + +*** +Running idf_size.py diff --archives with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 10604 +7016 ( -7016 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38959 -27 ( +27 remain, +0 total) + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 49563 +6989 ( -6989 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used Flash size : 186524 bytes 99551 +86973 + .text : 146944 bytes 77191 +69753 + .rodata : 39580 bytes 22360 +17220 +Total image size: 283036 bytes (.bin may be padded larger) 194629 +88407 +Per-archive contributions to ELF file: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + libc.a| | 364| -364| | | | | | | | | | | 364| -364| 55583| 54704| +879| 3709| 3703| +6| 59292| 58771| +521 + libesp32.a| 2635| 2118| +517| 2375| 81| +2294| 7758| 5462| +2296| | | | 12768| 7661| +5107| 4814| 4511| +303| 8133| 2751| +5382| 23340| 14842| +8498 + libfreertos.a| 4156| 4140| +16| 832| 792| +40| 12428| 12459| -31| 425| 425| | 17841| 17816| +25| | | | 1545| 1451| +94| 18554| 18475| +79 + libspi_flash.a| 36| 779| -743| 359| 294| +65| 7004| 4896| +2108| | | | 7399| 5969| +1430| 886| 1135| -249| 1624| 1412| +212| 9550| 8222| +1328 + libsoc.a| 660| 208| +452| 8| 4| +4| 3887| 6790| -2903| | | | 4555| 7002| -2447| | 1763| -1763| 3456| 1956| +1500| 8003| 10717| -2714 + libheap.a| 1331| 304| +1027| 4| 4| | 4376| 3129| +1247| | | | 5711| 3437| +2274| 1218| 884| +334| 980| 741| +239| 7905| 5058| +2847 + libgcc.a| 4| | +4| 20| | +20| 104| | +104| | | | 128| | +128| 5488| | +5488| 888| 160| +728| 6484| 160| +6324 + libvfs.a| 232| 308| -76| 103| 48| +55| | | | | | | 335| 356| -21| 3770| 5650| -1880| 403| 915| -512| 4405| 6873| -2468 + libnewlib.a| 152| 152| | 272| 272| | 853| 820| +33| | | | 1277| 1244| +33| 803| 868| -65| 86| 84| +2| 1894| 1924| -30 + libpthread.a| 16| 8| +8| 12| 12| | 174| | +174| | | | 202| 20| +182| 774| 264| +510| 638| | +638| 1602| 272| +1330 + libdriver.a| 40| 112| -72| 20| 20| | | | | | | | 60| 132| -72| 961| 4272| -3311| 537| 1910| -1373| 1538| 6294| -4756 + liblog.a| 8| 8| | 268| 272| -4| 456| 222| +234| | | | 732| 502| +230| 396| 484| -88| 166| 147| +19| 1026| 861| +165 + libapp_update.a| | | | | 4| -4| | 109| -109| | | | | 113| -113| 123| 159| -36| 717| 470| +247| 840| 738| +102 + libhal.a| | | | | | | 515| 447| +68| | | | 515| 447| +68| | | | 32| 32| | 547| 479| +68 + libmain.a| | | | | | | | | | | | | | | | 53| 72| -19| 10| 39| -29| 63| 111| -48 + libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| + libbootloader_support.a| | | | | | | | 1028| -1028| | | | | 1028| -1028| | 565| -565| | 20| -20| | 1613| -1613 + libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + liblwip.a 14 3751 0 0 3765 66978 13936 80928 + libunity.a 0 121 0 0 121 2316 830 3146 + libstdc++.a 8 16 0 0 24 1827 1062 2897 + libtcpip_adapter.a 0 81 0 0 81 180 359 539 + libm.a 0 0 92 0 92 0 0 92 +libxtensa-debug-module.a 0 0 8 0 8 0 0 8 + libcoexist.a 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 +The following entries are present in only: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + libesp_common.a 8 184 239 0 431 783 5421 6451 + libesp_timer.a 16 20 794 0 830 723 493 2026 + libesp_ringbuf.a 0 0 858 0 858 0 150 1008 + libxtensa.a 0 0 217 0 217 0 0 217 + libsoc_esp32.a 0 0 0 0 0 0 160 160 + (exe) 0 0 0 3 3 3 12 18 + libefuse.a 0 0 0 0 0 0 0 0 + libmbedcrypto.a 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --archives with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 10604 bytes ( 170132 remain, 5.9% used) 17620 -7016 ( +7016 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 +Used static IRAM: 38959 bytes ( 92113 remain, 29.7% used) 38932 +27 ( -27 remain, +0 total) + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used stat D/IRAM: 49563 bytes ( 262245 remain, 15.9% used) 56552 -6989 ( +6989 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used Flash size : 99551 bytes 186524 -86973 + .text : 77191 bytes 146944 -69753 + .rodata : 22360 bytes 39580 -17220 +Total image size: 194629 bytes (.bin may be padded larger) 283036 -88407 +Per-archive contributions to ELF file: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + libc.a| 364| | +364| | | | | | | | | | 364| | +364| 54704| 55583| -879| 3703| 3709| -6| 58771| 59292| -521 + libfreertos.a| 4140| 4156| -16| 792| 832| -40| 12459| 12428| +31| 425| 425| | 17816| 17841| -25| | | | 1451| 1545| -94| 18475| 18554| -79 + libesp32.a| 2118| 2635| -517| 81| 2375| -2294| 5462| 7758| -2296| | | | 7661| 12768| -5107| 4511| 4814| -303| 2751| 8133| -5382| 14842| 23340| -8498 + libsoc.a| 208| 660| -452| 4| 8| -4| 6790| 3887| +2903| | | | 7002| 4555| +2447| 1763| | +1763| 1956| 3456| -1500| 10717| 8003| +2714 + libspi_flash.a| 779| 36| +743| 294| 359| -65| 4896| 7004| -2108| | | | 5969| 7399| -1430| 1135| 886| +249| 1412| 1624| -212| 8222| 9550| -1328 + libvfs.a| 308| 232| +76| 48| 103| -55| | | | | | | 356| 335| +21| 5650| 3770| +1880| 915| 403| +512| 6873| 4405| +2468 + libdriver.a| 112| 40| +72| 20| 20| | | | | | | | 132| 60| +72| 4272| 961| +3311| 1910| 537| +1373| 6294| 1538| +4756 + libheap.a| 304| 1331| -1027| 4| 4| | 3129| 4376| -1247| | | | 3437| 5711| -2274| 884| 1218| -334| 741| 980| -239| 5058| 7905| -2847 + libnewlib.a| 152| 152| | 272| 272| | 820| 853| -33| | | | 1244| 1277| -33| 868| 803| +65| 84| 86| -2| 1924| 1894| +30 + libbootloader_support.a| | | | | | | 1028| | +1028| | | | 1028| | +1028| 565| | +565| 20| | +20| 1613| | +1613 + liblog.a| 8| 8| | 272| 268| +4| 222| 456| -234| | | | 502| 732| -230| 484| 396| +88| 147| 166| -19| 861| 1026| -165 + libapp_update.a| | | | 4| | +4| 109| | +109| | | | 113| | +113| 159| 123| +36| 470| 717| -247| 738| 840| -102 + libhal.a| | | | | | | 447| 515| -68| | | | 447| 515| -68| | | | 32| 32| | 479| 547| -68 + libpthread.a| 8| 16| -8| 12| 12| | | 174| -174| | | | 20| 202| -182| 264| 774| -510| | 638| -638| 272| 1602| -1330 + libgcc.a| | 4| -4| | 20| -20| | 104| -104| | | | | 128| -128| | 5488| -5488| 160| 888| -728| 160| 6484| -6324 + libmain.a| | | | | | | | | | | | | | | | 72| 53| +19| 39| 10| +29| 111| 63| +48 + libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| + libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + libesp_common.a 8 184 239 0 431 783 5421 6451 + libesp_timer.a 16 20 794 0 830 723 493 2026 + libesp_ringbuf.a 0 0 858 0 858 0 150 1008 + libxtensa.a 0 0 217 0 217 0 0 217 + libsoc_esp32.a 0 0 0 0 0 0 160 160 + (exe) 0 0 0 3 3 3 12 18 + libefuse.a 0 0 0 0 0 0 0 0 + libmbedcrypto.a 0 0 0 0 0 0 0 0 +The following entries are present in only: + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + liblwip.a 14 3751 0 0 3765 66978 13936 80928 + libunity.a 0 121 0 0 121 2316 830 3146 + libstdc++.a 8 16 0 0 24 1827 1062 2897 + libtcpip_adapter.a 0 81 0 0 81 180 359 539 + libm.a 0 0 92 0 92 0 0 92 +libxtensa-debug-module.a 0 0 8 0 8 0 0 8 + libcoexist.a 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --files with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 7212 +10408 (+104792 remain, +115200 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .rodata size: 0 bytes 7160 -7160 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 18796 +20136 ( +13656 remain, +33792 total) + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 26008 +30544 (+118448 remain, +148992 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 + .rodata size: 0 bytes 7160 -7160 +Used Flash size : 186524 bytes 0 +186524 + .text : 146944 bytes 0 +146944 + .rodata : 39580 bytes 0 +39580 +Total image size: 283036 bytes (.bin may be padded larger) 51920 +231116 +Per-file contributions to ELF file: + Object File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- ----------------------- ----------------------- + _udivdi3.o| | | | | | | | | | | | | | | | | | | | | | | | | | | | 40| | +40| 40| | +40 +The following entries are present in only: + Object File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total + lib_a-vfprintf.o 0 0 0 0 0 0 0 0 14193 704 14897 + lib_a-svfprintf.o 0 0 0 0 0 0 0 0 13834 756 14590 + lib_a-svfiprintf.o 0 0 0 0 0 0 0 0 9642 1176 10818 + lib_a-vfiprintf.o 0 0 0 0 0 0 0 0 9933 704 10637 + tcp_in.o 0 54 0 0 0 0 0 54 8127 916 9043 + nd6.o 8 1027 0 0 0 0 0 1035 8427 136 8571 + tasks.o 20 700 0 0 5667 0 0 6387 0 503 6190 + tcp_out.o 0 0 0 0 0 0 0 0 5060 1124 6184 + tcp.o 4 23 0 0 0 0 0 27 4290 1384 5678 + sockets.o 0 728 0 0 0 0 0 728 4627 824 5451 + api_msg.o 0 0 0 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 0 0 0 8 3456 1401 4857 + panic.o 2579 5 0 0 2145 0 0 4729 0 0 4724 + esp_err_to_name.o 0 0 0 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 0 0 0 24 3316 404 3724 + pbuf.o 0 1 0 0 0 0 0 1 2453 1161 3614 + portasm.o 3084 0 0 0 480 0 0 3564 0 0 3564 + lib_a-dtoa.o 0 0 0 0 0 0 0 0 3522 13 3535 + ip6.o 0 0 0 0 0 0 0 0 3212 124 3336 + spi_flash_rom_patch.o 0 0 0 0 2518 0 0 2518 0 766 3284 + etharp.o 0 241 0 0 0 0 0 241 2618 658 3276 + udp.o 2 4 0 0 0 0 0 6 3020 216 3238 + intr_alloc.o 8 22 0 0 726 0 0 756 1749 710 3193 + multi_heap.o 857 0 0 0 2217 0 0 3074 0 0 3074 + queue.o 8 56 0 0 2569 0 0 2633 0 369 2946 + unwind-dw2-xtensa.o 0 0 0 0 0 0 0 0 2172 324 2496 + flash_ops.o 32 41 0 0 2352 0 0 2425 99 0 2483 + rtc_clk.o 660 8 0 0 1794 0 0 2462 0 0 2454 + lib_a-mprec.o 0 0 0 0 0 0 0 0 2134 296 2430 + ip6_frag.o 0 6 0 0 0 0 0 6 1905 442 2347 + api_lib.o 0 0 0 0 0 0 0 0 1425 919 2344 + vfs.o 192 40 0 0 0 0 0 232 1995 132 2319 + igmp.o 0 12 0 0 0 0 0 12 1604 707 2311 + unity_platform.o 0 13 0 0 0 0 0 13 1511 600 2111 + vfs_uart.o 40 63 0 0 0 0 0 103 1775 271 2086 + esp_timer_esp32.o 8 26 0 0 1295 0 0 1329 254 526 2083 + rtc_periph.o 0 0 0 0 0 0 0 0 0 2080 2080 + dns.o 0 1292 0 0 0 0 0 1292 1809 206 2015 + heap_caps.o 4 0 0 0 1195 0 0 1199 188 593 1980 + eh_personality.o 0 0 0 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 0 0 0 6 1664 139 1803 + flash_mmap.o 0 296 0 0 1298 0 0 1594 124 327 1749 + xtensa_vectors.o 8 0 0 0 1272 425 0 1705 0 36 1741 + cpu_start.o 0 1 0 0 806 0 0 807 277 486 1569 + clk.o 0 0 0 0 67 0 0 67 581 893 1541 + netif.o 0 241 0 0 0 0 0 241 1239 287 1526 + sys_arch.o 0 8 0 0 0 0 0 8 1216 222 1438 + multi_heap_poisoning.o 470 0 0 0 964 0 0 1434 0 0 1434 + heap_caps_init.o 0 4 0 0 0 0 0 4 1030 387 1417 + timers.o 8 56 0 0 1149 0 0 1213 0 233 1390 + mld6.o 0 4 0 0 0 0 0 4 1334 0 1334 + cache_utils.o 4 14 0 0 836 0 0 854 81 390 1311 + raw.o 0 4 0 0 0 0 0 4 1087 223 1310 + esp_timer.o 8 20 0 0 702 0 0 730 429 142 1281 + system_api.o 0 8 0 0 589 0 0 597 0 662 1251 + soc_memory_layout.o 0 0 0 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 0 0 51 0 0 1075 0 0 1075 + log.o 8 268 0 0 456 0 0 732 396 166 1026 + pthread.o 8 8 0 0 174 0 0 190 298 512 992 + icmp6.o 0 0 0 0 0 0 0 0 863 127 990 + port.o 0 16 0 0 617 0 0 633 0 369 986 + rtc_init.o 0 0 0 0 980 0 0 980 0 0 980 + rtc_time.o 0 0 0 0 803 0 0 803 0 137 940 + dport_access.o 8 40 0 0 539 0 0 587 189 129 865 + lib_a-fseeko.o 0 0 0 0 0 0 0 0 862 0 862 + unity.o 0 108 0 0 0 0 0 108 767 90 857 + esp_ota_ops.o 0 0 0 0 0 0 0 0 123 717 840 + tcpip.o 0 16 0 0 0 0 0 16 644 191 835 + time.o 0 32 0 0 139 0 0 171 691 0 830 + periph_ctrl.o 8 0 0 0 0 0 0 8 520 256 784 + timers.o 0 12 0 0 0 0 0 12 638 131 769 + partition.o 0 8 0 0 0 0 0 8 582 141 723 + locks.o 8 0 0 0 552 0 0 560 0 84 644 + pthread_local_storage.o 8 4 0 0 0 0 0 12 476 126 610 + ipc.o 0 36 0 0 159 0 0 195 329 104 592 + inet_chksum.o 0 0 0 0 0 0 0 0 580 0 580 + tcpip_adapter_lwip.o 0 81 0 0 0 0 0 81 180 359 539 + crosscore_int.o 8 8 0 0 204 0 0 220 126 148 486 + netbuf.o 0 0 0 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 0 0 0 307 155 462 + timer.o 16 0 0 0 0 0 0 16 112 281 409 + int_wdt.o 0 1 0 0 87 0 0 88 301 0 388 + eh_globals.o 0 16 0 0 0 0 0 16 149 193 342 + brownout.o 0 0 0 0 0 0 0 0 145 191 336 + windowspill_asm.o 0 0 0 0 311 0 0 311 0 0 311 + cpu_util.o 0 0 0 0 310 0 0 310 0 0 310 + rtc_module.o 8 8 0 0 0 0 0 16 291 0 299 + xtensa_context.o 0 0 0 0 299 0 0 299 0 0 299 + eh_terminate.o 0 0 0 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 0 0 0 244 12 256 +dport_panic_highint_hdl. 8 0 0 0 234 0 0 242 0 0 242 + lib_a-reent.o 0 0 0 0 0 0 0 0 232 0 232 + lib_a-fopen.o 0 0 0 0 0 0 0 0 228 0 228 + syscall_table.o 144 240 0 0 0 0 0 384 67 0 211 + dhcpserver.o 0 4 0 0 0 0 0 4 203 0 203 + freertos_hooks.o 8 128 0 0 43 0 0 179 137 0 188 + lib_a-puts.o 0 0 0 0 0 0 0 0 182 0 182 + test_utils.o 0 0 0 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 0 0 56 0 0 56 98 0 154 + list.o 0 0 0 0 142 0 0 142 0 0 142 + xtensa_intr.o 0 0 0 0 104 0 0 104 0 35 139 + syscalls.o 0 0 0 0 94 0 0 94 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 0 0 0 136 136 + dbg_stubs.o 0 2072 0 0 32 0 0 2104 100 0 132 + lib_a-assert.o 0 0 0 0 0 0 0 0 68 60 128 + lib_a-flags.o 0 0 0 0 0 0 0 0 127 0 127 + lib_a-printf.o 0 0 0 0 0 0 0 0 116 0 116 + ip4_addr.o 0 0 0 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 0 0 0 112 112 + lib_a-s_frexp.o 0 0 0 0 0 0 0 0 110 0 110 + memp.o 0 0 0 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 0 0 104 0 0 104 0 0 104 + lib_a-vprintf.o 0 0 0 0 0 0 0 0 94 0 94 + lib_a-s_fpclassify.o 0 0 0 0 92 0 0 92 0 0 92 + def.o 0 0 0 0 0 0 0 0 91 0 91 + lib_a-fiprintf.o 0 0 0 0 0 0 0 0 84 0 84 + hw_random.o 0 4 0 0 74 0 0 78 0 0 74 + stack_check.o 0 4 0 0 0 0 0 4 32 42 74 + clock.o 0 0 0 0 72 0 0 72 0 0 72 + reent_init.o 0 0 0 0 68 0 0 68 0 2 70 + app_main.o 0 0 0 0 0 0 0 0 53 10 63 +state_asm--restore_extra 0 0 0 0 62 0 0 62 0 0 62 +state_asm--save_extra_nw 0 0 0 0 62 0 0 62 0 0 62 + new_opv.o 0 0 0 0 0 0 0 0 0 56 56 + ip.o 0 60 0 0 0 0 0 60 50 0 50 + uart.o 8 12 0 0 0 0 0 20 38 0 46 +xtensa_vector_defaults.o 0 0 0 0 46 0 0 46 0 0 46 + lib_a-fseek.o 0 0 0 0 0 0 0 0 45 0 45 + _divdi3.o 0 0 0 0 0 0 0 0 0 40 40 + _moddi3.o 0 0 0 0 0 0 0 0 0 40 40 + _umoddi3.o 0 0 0 0 0 0 0 0 0 40 40 + new_op.o 0 0 0 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 0 0 32 0 0 36 0 0 32 + interrupts--intlevel.o 0 0 0 0 0 0 0 0 0 32 32 + init.o 0 0 0 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 0 0 0 20 20 + lib_a-errno.o 0 0 0 0 0 0 0 0 10 0 10 + int_asm--set_intclear.o 0 0 0 0 8 0 0 8 0 0 8 + eri.o 0 0 0 0 8 0 0 8 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 0 0 4 + eh_term_handler.o 4 0 0 0 0 0 0 4 0 0 4 + eh_unex_handler.o 4 0 0 0 0 0 0 4 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-fputs.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-snprintf.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-strerror.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-sysgettod.o 0 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 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 0 0 0 + _addsubdf3.o 0 0 0 0 0 0 0 0 0 0 0 + _cmpdf2.o 0 0 0 0 0 0 0 0 0 0 0 + _divdf3.o 0 0 0 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 0 0 0 + _fixdfsi.o 0 0 0 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 0 0 0 + _floatsidf.o 0 0 0 0 0 0 0 0 0 0 0 + _muldf3.o 0 0 0 0 0 0 0 0 0 0 0 + _popcountsi2.o 0 0 0 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 0 0 0 +The following entries are present in only: + Object File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total + bootloader_utility.c.o 0 1 1607 0 0 0 2216 3824 0 0 3823 + esp_image_format.c.o 0 8 1291 0 0 0 2316 3615 0 0 3607 + bootloader_esp32.c.o 0 0 891 1610 0 0 26 2527 0 0 2527 + rtc_clk.c.o 0 4 160 0 0 0 2217 2381 0 0 2377 + spi_flash_rom_patch.c.o 0 0 0 0 0 0 2110 2110 0 0 2110 + bootloader_flash.c.o 4 1 649 0 0 0 898 1552 0 0 1551 + rtc_clk_init.c.o 0 0 559 773 0 0 0 1332 0 0 1332 + bootloader_random.c.o 0 0 118 0 0 0 1057 1175 0 0 1175 + bootloader_common.c.o 0 0 506 0 0 0 493 999 0 0 999 +bootloader_flash_config_ 0 0 0 13 0 0 970 983 0 0 983 + rtc_time.c.o 0 0 197 705 0 0 0 902 0 0 902 + bootloader_sha.c.o 0 4 322 0 0 0 479 805 0 0 801 + flash_partitions.c.o 0 0 355 0 0 0 365 720 0 0 720 + rtc_wdt.c.o 0 0 0 0 0 0 710 710 0 0 710 + bootloader_init.c.o 0 24 348 352 0 0 0 724 0 0 700 + flash_qio_mode.c.o 0 0 0 502 0 0 0 502 0 0 502 + rtc_init.c.o 0 0 0 301 0 0 0 301 0 0 301 + bootloader_start.c.o 0 0 59 143 0 0 0 202 0 0 202 + bootloader_clock.c.o 0 0 8 0 0 0 170 178 0 0 178 +bootloader_efuse_esp32.c 0 0 0 0 0 0 130 130 0 0 130 + log_noos.c.o 0 0 0 0 0 0 34 34 0 0 34 + cpu_util.c.o 0 0 0 0 0 0 18 18 0 0 18 + crtbegin.o 0 0 8 0 0 0 0 8 0 0 8 + crtend.o 0 0 8 0 0 0 0 8 0 0 8 + crti.o 0 0 0 3 0 0 3 6 0 0 6 + crt0.o 0 0 0 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 0 0 0 + _bswapsi2.o 0 0 0 0 0 0 0 0 0 0 0 + gpio_periph.c.o 0 0 0 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --files with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 17620 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38932 ( +0 remain, +0 total) + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 56552 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used Flash size : 186524 bytes 186524 + .text : 146944 bytes 146944 + .rodata : 39580 bytes 39580 +Total image size: 283036 bytes (.bin may be padded larger) 283036 +Per-file contributions to ELF file: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + lib_a-vfprintf.o| | | | | | | | | | | | | | | | 14193| 14193| | 704| 704| | 14897| 14897| + lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13834| 13834| | 756| 756| | 14590| 14590| + lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9642| 9642| | 1176| 1176| | 10818| 10818| + lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 704| 704| | 10637| 10637| + tcp_in.o| | | | 54| 54| | | | | | | | 54| 54| | 8127| 8127| | 916| 916| | 9043| 9043| + nd6.o| 8| 8| | 1027| 1027| | | | | | | | 1035| 1035| | 8427| 8427| | 136| 136| | 8571| 8571| + tasks.o| 20| 20| | 700| 700| | 5667| 5667| | | | | 6387| 6387| | | | | 503| 503| | 6190| 6190| + tcp_out.o| | | | | | | | | | | | | | | | 5060| 5060| | 1124| 1124| | 6184| 6184| + tcp.o| 4| 4| | 23| 23| | | | | | | | 27| 27| | 4290| 4290| | 1384| 1384| | 5678| 5678| + sockets.o| | | | 728| 728| | | | | | | | 728| 728| | 4627| 4627| | 824| 824| | 5451| 5451| + api_msg.o| | | | | | | | | | | | | | | | 3763| 3763| | 1366| 1366| | 5129| 5129| + dhcp.o| | | | 8| 8| | | | | | | | 8| 8| | 3456| 3456| | 1401| 1401| | 4857| 4857| + panic.o| 2579| 2579| | 5| 5| | 2145| 2145| | | | | 4729| 4729| | | | | | | | 4724| 4724| + esp_err_to_name.o| | | | | | | | | | | | | | | | 50| 50| | 4091| 4091| | 4141| 4141| + unwind-dw2-fde.o| 4| 4| | 20| 20| | | | | | | | 24| 24| | 3316| 3316| | 404| 404| | 3724| 3724| + pbuf.o| | | | 1| 1| | | | | | | | 1| 1| | 2453| 2453| | 1161| 1161| | 3614| 3614| + portasm.o| 3084| 3084| | | | | 480| 480| | | | | 3564| 3564| | | | | | | | 3564| 3564| + lib_a-dtoa.o| | | | | | | | | | | | | | | | 3522| 3522| | 13| 13| | 3535| 3535| + ip6.o| | | | | | | | | | | | | | | | 3212| 3212| | 124| 124| | 3336| 3336| + spi_flash_rom_patch.o| | | | | | | 2518| 2518| | | | | 2518| 2518| | | | | 766| 766| | 3284| 3284| + etharp.o| | | | 241| 241| | | | | | | | 241| 241| | 2618| 2618| | 658| 658| | 3276| 3276| + udp.o| 2| 2| | 4| 4| | | | | | | | 6| 6| | 3020| 3020| | 216| 216| | 3238| 3238| + intr_alloc.o| 8| 8| | 22| 22| | 726| 726| | | | | 756| 756| | 1749| 1749| | 710| 710| | 3193| 3193| + multi_heap.o| 857| 857| | | | | 2217| 2217| | | | | 3074| 3074| | | | | | | | 3074| 3074| + queue.o| 8| 8| | 56| 56| | 2569| 2569| | | | | 2633| 2633| | | | | 369| 369| | 2946| 2946| + unwind-dw2-xtensa.o| | | | | | | | | | | | | | | | 2172| 2172| | 324| 324| | 2496| 2496| + flash_ops.o| 32| 32| | 41| 41| | 2352| 2352| | | | | 2425| 2425| | 99| 99| | | | | 2483| 2483| + rtc_clk.o| 660| 660| | 8| 8| | 1794| 1794| | | | | 2462| 2462| | | | | | | | 2454| 2454| + lib_a-mprec.o| | | | | | | | | | | | | | | | 2134| 2134| | 296| 296| | 2430| 2430| + ip6_frag.o| | | | 6| 6| | | | | | | | 6| 6| | 1905| 1905| | 442| 442| | 2347| 2347| + api_lib.o| | | | | | | | | | | | | | | | 1425| 1425| | 919| 919| | 2344| 2344| + vfs.o| 192| 192| | 40| 40| | | | | | | | 232| 232| | 1995| 1995| | 132| 132| | 2319| 2319| + igmp.o| | | | 12| 12| | | | | | | | 12| 12| | 1604| 1604| | 707| 707| | 2311| 2311| + unity_platform.o| | | | 13| 13| | | | | | | | 13| 13| | 1511| 1511| | 600| 600| | 2111| 2111| + vfs_uart.o| 40| 40| | 63| 63| | | | | | | | 103| 103| | 1775| 1775| | 271| 271| | 2086| 2086| + esp_timer_esp32.o| 8| 8| | 26| 26| | 1295| 1295| | | | | 1329| 1329| | 254| 254| | 526| 526| | 2083| 2083| + rtc_periph.o| | | | | | | | | | | | | | | | | | | 2080| 2080| | 2080| 2080| + dns.o| | | | 1292| 1292| | | | | | | | 1292| 1292| | 1809| 1809| | 206| 206| | 2015| 2015| + heap_caps.o| 4| 4| | | | | 1195| 1195| | | | | 1199| 1199| | 188| 188| | 593| 593| | 1980| 1980| + eh_personality.o| | | | | | | | | | | | | | | | 1561| 1561| | 384| 384| | 1945| 1945| + ip4.o| | | | 6| 6| | | | | | | | 6| 6| | 1664| 1664| | 139| 139| | 1803| 1803| + flash_mmap.o| | | | 296| 296| | 1298| 1298| | | | | 1594| 1594| | 124| 124| | 327| 327| | 1749| 1749| + xtensa_vectors.o| 8| 8| | | | | 1272| 1272| | 425| 425| | 1705| 1705| | | | | 36| 36| | 1741| 1741| + cpu_start.o| | | | 1| 1| | 806| 806| | | | | 807| 807| | 277| 277| | 486| 486| | 1569| 1569| + clk.o| | | | | | | 67| 67| | | | | 67| 67| | 581| 581| | 893| 893| | 1541| 1541| + netif.o| | | | 241| 241| | | | | | | | 241| 241| | 1239| 1239| | 287| 287| | 1526| 1526| + sys_arch.o| | | | 8| 8| | | | | | | | 8| 8| | 1216| 1216| | 222| 222| | 1438| 1438| + multi_heap_poisoning.o| 470| 470| | | | | 964| 964| | | | | 1434| 1434| | | | | | | | 1434| 1434| + heap_caps_init.o| | | | 4| 4| | | | | | | | 4| 4| | 1030| 1030| | 387| 387| | 1417| 1417| + timers.o| 8| 8| | 56| 56| | 1149| 1149| | | | | 1213| 1213| | | | | 233| 233| | 1390| 1390| + mld6.o| | | | 4| 4| | | | | | | | 4| 4| | 1334| 1334| | | | | 1334| 1334| + cache_utils.o| 4| 4| | 14| 14| | 836| 836| | | | | 854| 854| | 81| 81| | 390| 390| | 1311| 1311| + raw.o| | | | 4| 4| | | | | | | | 4| 4| | 1087| 1087| | 223| 223| | 1310| 1310| + esp_timer.o| 8| 8| | 20| 20| | 702| 702| | | | | 730| 730| | 429| 429| | 142| 142| | 1281| 1281| + system_api.o| | | | 8| 8| | 589| 589| | | | | 597| 597| | | | | 662| 662| | 1251| 1251| + soc_memory_layout.o| | | | | | | | | | | | | | | | | | | 1239| 1239| | 1239| 1239| + icmp.o| | | | | | | | | | | | | | | | 769| 769| | 371| 371| | 1140| 1140| + xtensa_intr_asm.o| 1024| 1024| | | | | 51| 51| | | | | 1075| 1075| | | | | | | | 1075| 1075| + log.o| 8| 8| | 268| 268| | 456| 456| | | | | 732| 732| | 396| 396| | 166| 166| | 1026| 1026| + pthread.o| 8| 8| | 8| 8| | 174| 174| | | | | 190| 190| | 298| 298| | 512| 512| | 992| 992| + icmp6.o| | | | | | | | | | | | | | | | 863| 863| | 127| 127| | 990| 990| + port.o| | | | 16| 16| | 617| 617| | | | | 633| 633| | | | | 369| 369| | 986| 986| + rtc_init.o| | | | | | | 980| 980| | | | | 980| 980| | | | | | | | 980| 980| + rtc_time.o| | | | | | | 803| 803| | | | | 803| 803| | | | | 137| 137| | 940| 940| + dport_access.o| 8| 8| | 40| 40| | 539| 539| | | | | 587| 587| | 189| 189| | 129| 129| | 865| 865| + lib_a-fseeko.o| | | | | | | | | | | | | | | | 862| 862| | | | | 862| 862| + unity.o| | | | 108| 108| | | | | | | | 108| 108| | 767| 767| | 90| 90| | 857| 857| + esp_ota_ops.o| | | | | | | | | | | | | | | | 123| 123| | 717| 717| | 840| 840| + tcpip.o| | | | 16| 16| | | | | | | | 16| 16| | 644| 644| | 191| 191| | 835| 835| + time.o| | | | 32| 32| | 139| 139| | | | | 171| 171| | 691| 691| | | | | 830| 830| + periph_ctrl.o| 8| 8| | | | | | | | | | | 8| 8| | 520| 520| | 256| 256| | 784| 784| + timers.o| | | | 12| 12| | | | | | | | 12| 12| | 638| 638| | 131| 131| | 769| 769| + partition.o| | | | 8| 8| | | | | | | | 8| 8| | 582| 582| | 141| 141| | 723| 723| + locks.o| 8| 8| | | | | 552| 552| | | | | 560| 560| | | | | 84| 84| | 644| 644| + pthread_local_storage.o| 8| 8| | 4| 4| | | | | | | | 12| 12| | 476| 476| | 126| 126| | 610| 610| + ipc.o| | | | 36| 36| | 159| 159| | | | | 195| 195| | 329| 329| | 104| 104| | 592| 592| + inet_chksum.o| | | | | | | | | | | | | | | | 580| 580| | | | | 580| 580| + tcpip_adapter_lwip.o| | | | 81| 81| | | | | | | | 81| 81| | 180| 180| | 359| 359| | 539| 539| + crosscore_int.o| 8| 8| | 8| 8| | 204| 204| | | | | 220| 220| | 126| 126| | 148| 148| | 486| 486| + netbuf.o| | | | | | | | | | | | | | | | 154| 154| | 326| 326| | 480| 480| + vfs_lwip.o| | | | | | | | | | | | | | | | 307| 307| | 155| 155| | 462| 462| + timer.o| 16| 16| | | | | | | | | | | 16| 16| | 112| 112| | 281| 281| | 409| 409| + int_wdt.o| | | | 1| 1| | 87| 87| | | | | 88| 88| | 301| 301| | | | | 388| 388| + eh_globals.o| | | | 16| 16| | | | | | | | 16| 16| | 149| 149| | 193| 193| | 342| 342| + brownout.o| | | | | | | | | | | | | | | | 145| 145| | 191| 191| | 336| 336| + windowspill_asm.o| | | | | | | 311| 311| | | | | 311| 311| | | | | | | | 311| 311| + cpu_util.o| | | | | | | 310| 310| | | | | 310| 310| | | | | | | | 310| 310| + rtc_module.o| 8| 8| | 8| 8| | | | | | | | 16| 16| | 291| 291| | | | | 299| 299| + xtensa_context.o| | | | | | | 299| 299| | | | | 299| 299| | | | | | | | 299| 299| + eh_terminate.o| | | | | | | | | | | | | | | | 117| 117| | 141| 141| | 258| 258| + ethernet.o| | | | | | | | | | | | | | | | 244| 244| | 12| 12| | 256| 256| +dport_panic_highint_hdl.| 8| 8| | | | | 234| 234| | | | | 242| 242| | | | | | | | 242| 242| + lib_a-reent.o| | | | | | | | | | | | | | | | 232| 232| | | | | 232| 232| + lib_a-fopen.o| | | | | | | | | | | | | | | | 228| 228| | | | | 228| 228| + syscall_table.o| 144| 144| | 240| 240| | | | | | | | 384| 384| | 67| 67| | | | | 211| 211| + dhcpserver.o| | | | 4| 4| | | | | | | | 4| 4| | 203| 203| | | | | 203| 203| + freertos_hooks.o| 8| 8| | 128| 128| | 43| 43| | | | | 179| 179| | 137| 137| | | | | 188| 188| + lib_a-puts.o| | | | | | | | | | | | | | | | 182| 182| | | | | 182| 182| + test_utils.o| | | | | | | | | | | | | | | | 38| 38| | 140| 140| | 178| 178| + lib_a-sprintf.o| | | | | | | | | | | | | | | | 167| 167| | | | | 167| 167| + cache_err_int.o| | | | | | | 56| 56| | | | | 56| 56| | 98| 98| | | | | 154| 154| + list.o| | | | | | | 142| 142| | | | | 142| 142| | | | | | | | 142| 142| + xtensa_intr.o| | | | | | | 104| 104| | | | | 104| 104| | | | | 35| 35| | 139| 139| + syscalls.o| | | | | | | 94| 94| | | | | 94| 94| | 45| 45| | | | | 139| 139| + si_class_type_info.o| | | | | | | | | | | | | | | | | | | 136| 136| | 136| 136| + dbg_stubs.o| | | | 2072| 2072| | 32| 32| | | | | 2104| 2104| | 100| 100| | | | | 132| 132| + lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| + lib_a-flags.o| | | | | | | | | | | | | | | | 127| 127| | | | | 127| 127| + lib_a-printf.o| | | | | | | | | | | | | | | | 116| 116| | | | | 116| 116| + ip4_addr.o| | | | | | | | | | | | | | | | 72| 72| | 40| 40| | 112| 112| + class_type_info.o| | | | | | | | | | | | | | | | | | | 112| 112| | 112| 112| + lib_a-s_frexp.o| | | | | | | | | | | | | | | | 110| 110| | | | | 110| 110| + memp.o| | | | | | | | | | | | | | | | | | | 108| 108| | 108| 108| + lib2funcs.o| | | | | | | 104| 104| | | | | 104| 104| | | | | | | | 104| 104| + lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| + lib_a-s_fpclassify.o| | | | | | | 92| 92| | | | | 92| 92| | | | | | | | 92| 92| + def.o| | | | | | | | | | | | | | | | 91| 91| | | | | 91| 91| + lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| + hw_random.o| | | | 4| 4| | 74| 74| | | | | 78| 78| | | | | | | | 74| 74| + stack_check.o| | | | 4| 4| | | | | | | | 4| 4| | 32| 32| | 42| 42| | 74| 74| + clock.o| | | | | | | 72| 72| | | | | 72| 72| | | | | | | | 72| 72| + reent_init.o| | | | | | | 68| 68| | | | | 68| 68| | | | | 2| 2| | 70| 70| + app_main.o| | | | | | | | | | | | | | | | 53| 53| | 10| 10| | 63| 63| +state_asm--restore_extra| | | | | | | 62| 62| | | | | 62| 62| | | | | | | | 62| 62| +state_asm--save_extra_nw| | | | | | | 62| 62| | | | | 62| 62| | | | | | | | 62| 62| + new_opv.o| | | | | | | | | | | | | | | | | | | 56| 56| | 56| 56| + ip.o| | | | 60| 60| | | | | | | | 60| 60| | 50| 50| | | | | 50| 50| + uart.o| 8| 8| | 12| 12| | | | | | | | 20| 20| | 38| 38| | | | | 46| 46| +xtensa_vector_defaults.o| | | | | | | 46| 46| | | | | 46| 46| | | | | | | | 46| 46| + lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| + _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + new_op.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + xtensa_init.o| | | | 4| 4| | 32| 32| | | | | 36| 36| | | | | | | | 32| 32| + interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| + init.o| | | | | | | | | | | | | | | | 27| 27| | | | | 27| 27| + wifi_init.o| | | | | | | | | | | | | | | | 17| 17| | 9| 9| | 26| 26| + ip6_addr.o| | | | | | | | | | | | | | | | | | | 20| 20| | 20| 20| + lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| + int_asm--set_intclear.o| | | | | | | 8| 8| | | | | 8| 8| | | | | | | | 8| 8| + eri.o| | | | | | | 8| 8| | | | | 8| 8| | | | | | | | 8| 8| + cxx_exception_stubs.o| | | | | | | | | | | | | | | | 6| 6| | | | | 6| 6| + cxx_guards.o| | | | | | | | | | | | | | | | 5| 5| | | | | 5| 5| + FreeRTOS-openocd.o| 4| 4| | | | | | | | | | | 4| 4| | | | | | | | 4| 4| + eh_term_handler.o| 4| 4| | | | | | | | | | | 4| 4| | | | | | | | 4| 4| + eh_unex_handler.o| 4| 4| | | | | | | | | | | 4| 4| | | | | | | | 4| 4| + bootloader_flash.o| | | | | | | | | | | | | | | | | | | | | | | | + bootloader_sha.o| | | | | | | | | | | | | | | | | | | | | | | | + esp_image_format.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-snprintf.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-vsnprintf.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-xpg_strerror_r.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_api.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_arbit.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_core.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_dbg.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_hw.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_param.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + misc_nvs.o| | | | | | | | | | | | | | | | | | | | | | | | + gpio.o| | | | | | | | | | | | | | | | | | | | | | | | + ets_timer_legacy.o| | | | | | | | | | | | | | | | | | | | | | | | +event_default_handlers.o| | | | | | | | | | | | | | | | | | | | | | | | + event_loop.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_printf.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_init.o| | | | | | | | | | | | | | | | | | | | | | | | + sha.o| | | | | | | | | | | | | | | | | | | | | | | | + wifi_os_adapter.o| | | | | | | | | | | | | | | | | | | | | | | | + emac_dev.o| | | | | | | | | | | | | | | | | | | | | | | | + emac_main.o| | | | | | | | | | | | | | | | | | | | | | | | + event_groups.o| | | | | | | | | | | | | | | | | | | | | | | | + ringbuf.o| | | | | | | | | | | | | | | | | | | | | | | | + _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _divsf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _extendsfdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatdidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatdisf.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | + ethernetif.o| | | | | | | | | | | | | | | | | | | | | | | | + ethip6.o| | | | | | | | | | | | | | | | | | | | | | | | + wlanif.o| | | | | | | | | | | | | | | | | | | | | | | | + esp_sha256.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_common.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_config.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_main.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_parent.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_route.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_schedule.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_utilities.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_wifi.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_action.o| | | | | | | | | | | | | | | | | | | | | | | | +ieee80211_action_vendor.| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_api.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto_ccmp.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto_tkip.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto_wep.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_debug.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ets.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_hostap.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ht.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ie_vendor.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_input.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ioctl.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_mesh_quick.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_misc.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_nvs.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_output.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_phy.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_power.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_proto.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_regdomain.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_rfid.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_scan.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_sta.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + wl_chm.o| | | | | | | | | | | | | | | | | | | | | | | | + wl_cnx.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_api.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_item_hash_list.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_page.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_pagemanager.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_storage.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_types.o| | | | | | | | | | | | | | | | | | | | | | | | + phy.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_chip_v7.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_chip_v7_ana.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_chip_v7_cal.o| | | | | | | | | | | | | | | | | | | | | | | | + esf_buf.o| | | | | | | | | | | | | | | | | | | | | | | | + if_hwctrl.o| | | | | | | | | | | | | | | | | | | | | | | | + lmac.o| | | | | | | | | | | | | | | | | | | | | | | | + pm.o| | | | | | | | | | | | | | | | | | | | | | | | + pm_for_bcn_only_mode.o| | | | | | | | | | | | | | | | | | | | | | | | + pp.o| | | | | | | | | | | | | | | | | | | | | | | | + pp_debug.o| | | | | | | | | | | | | | | | | | | | | | | | + pp_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + rate_control.o| | | | | | | | | | | | | | | | | | | | | | | | + trc.o| | | | | | | | | | | | | | | | | | | | | | | | + wdev.o| | | | | | | | | | | | | | | | | | | | | | | | + bt_bb.o| | | | | | | | | | | | | | | | | | | | | | | | + pm.o| | | | | | | | | | | | | | | | | | | | | | | | + rtc.o| | | | | | | | | | | | | | | | | | | | | | | | + rtc_analog.o| | | | | | | | | | | | | | | | | | | | | | | | + smartconfig_ack.o| | | | | | | | | | | | | | | | | | | | | | | | + gpio_periph.o| | | | | | | | | | | | | | | | | | | | | | | | + rtc_sleep.o| | | | | | | | | | | | | | | | | | | | | | | | + bad_alloc.o| | | | | | | | | | | | | | | | | | | | | | | | + del_op.o| | | | | | | | | | | | | | | | | | | | | | | | + del_opv.o| | | | | | | | | | | | | | | | | | | | | | | | + eh_exception.o| | | | | | | | | | | | | | | | | | | | | | | | + new_handler.o| | | | | | | | | | | | | | | | | | | | | | | | + pure.o| | | | | | | | | | | | | | | | | | | | | | | | + tinfo.o| | | | | | | | | | | | | | | | | | | | | | | | + ap_config.o| | | | | | | | | | | | | | | | | | | | | | | | + common.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_auth.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_auth_ie.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_common.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_debug.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_ie.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_main.o| | | | | | | | | | | | | | | | | | | | | | | | + wpabuf.o| | | | | | | | | | | | | | | | | | | | | | | | + wpas_glue.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa2_internal.o| | | | | | | | | | | | | | | | | | | | | | | | + os_xtensa.o| | | | | | | | | | | | | | | | | | | | | | | | + wps_internal.o| | | | | | | | | | | | | | | | | | | | | | | | + +*** +Running idf_size.py diff --files with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 10604 +7016 ( -7016 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38959 -27 ( +27 remain, +0 total) + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 49563 +6989 ( -6989 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used Flash size : 186524 bytes 99551 +86973 + .text : 146944 bytes 77191 +69753 + .rodata : 39580 bytes 22360 +17220 +Total image size: 283036 bytes (.bin may be padded larger) 194629 +88407 +Per-file contributions to ELF file: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + lib_a-vfprintf.o| | | | | | | | | | | | | | | | 14193| 13681| +512| 704| 700| +4| 14897| 14381| +516 + lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13834| 13290| +544| 756| 752| +4| 14590| 14042| +548 + lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9642| 9623| +19| 1176| 1172| +4| 10818| 10795| +23 + lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 704| 700| +4| 10637| 10633| +4 + lib_a-dtoa.o| | | | | | | | | | | | | | | | 3522| 3524| -2| 13| 13| | 3535| 3537| -2 + lib_a-mprec.o| | | | | | | | | | | | | | | | 2134| 2140| -6| 296| 296| | 2430| 2436| -6 + lib_a-fseeko.o| | | | | | | | | | | | | | | | 862| 918| -56| | | | 862| 918| -56 + windowspill_asm.o| | | | | | | 311| 315| -4| | | | 311| 315| -4| | | | | | | 311| 315| -4 + lib_a-reent.o| | | | | | | | | | | | | | | | 232| 236| -4| | | | 232| 236| -4 + lib_a-fopen.o| | | | | | | | | | | | | | | | 228| 244| -16| | | | 228| 244| -16 + lib_a-puts.o| | | | | | | | | | | | | | | | 182| 234| -52| | | | 182| 234| -52 + lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| + lib_a-flags.o| | | | | | | | | | | | | | | | 127| 128| -1| | | | 127| 128| -1 + lib_a-printf.o| | | | | | | | | | | | | | | | 116| | +116| | | | 116| | +116 + lib_a-s_frexp.o| | | | | | | | | | | | | | | | 110| 100| +10| | | | 110| 100| +10 + lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| + lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| +state_asm--restore_extra| | | | | | | 62| 62| | | | | 62| 62| | | | | | | | 62| 62| +state_asm--save_extra_nw| | | | | | | 62| 62| | | | | 62| 62| | | | | | | | 62| 62| + lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| + _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| + lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| + int_asm--set_intclear.o| | | | | | | 8| 8| | | | | 8| 8| | | | | | | | 8| 8| + lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-snprintf.o| | | | | | | | | | | | | | | | | 217| -217| | | | | 217| -217 + lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | + _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + tcp_in.o 0 54 0 0 54 8127 916 9043 + nd6.o 8 1027 0 0 1035 8427 136 8571 + tasks.o 20 700 5667 0 6387 0 503 6190 + tcp_out.o 0 0 0 0 0 5060 1124 6184 + tcp.o 4 23 0 0 27 4290 1384 5678 + sockets.o 0 728 0 0 728 4627 824 5451 + api_msg.o 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 8 3456 1401 4857 + panic.o 2579 5 2145 0 4729 0 0 4724 + esp_err_to_name.o 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 24 3316 404 3724 + pbuf.o 0 1 0 0 1 2453 1161 3614 + portasm.o 3084 0 480 0 3564 0 0 3564 + ip6.o 0 0 0 0 0 3212 124 3336 + spi_flash_rom_patch.o 0 0 2518 0 2518 0 766 3284 + etharp.o 0 241 0 0 241 2618 658 3276 + udp.o 2 4 0 0 6 3020 216 3238 + intr_alloc.o 8 22 726 0 756 1749 710 3193 + multi_heap.o 857 0 2217 0 3074 0 0 3074 + queue.o 8 56 2569 0 2633 0 369 2946 + unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 + flash_ops.o 32 41 2352 0 2425 99 0 2483 + rtc_clk.o 660 8 1794 0 2462 0 0 2454 + ip6_frag.o 0 6 0 0 6 1905 442 2347 + api_lib.o 0 0 0 0 0 1425 919 2344 + vfs.o 192 40 0 0 232 1995 132 2319 + igmp.o 0 12 0 0 12 1604 707 2311 + unity_platform.o 0 13 0 0 13 1511 600 2111 + vfs_uart.o 40 63 0 0 103 1775 271 2086 + esp_timer_esp32.o 8 26 1295 0 1329 254 526 2083 + rtc_periph.o 0 0 0 0 0 0 2080 2080 + dns.o 0 1292 0 0 1292 1809 206 2015 + heap_caps.o 4 0 1195 0 1199 188 593 1980 + eh_personality.o 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 6 1664 139 1803 + flash_mmap.o 0 296 1298 0 1594 124 327 1749 + xtensa_vectors.o 8 0 1272 425 1705 0 36 1741 + cpu_start.o 0 1 806 0 807 277 486 1569 + clk.o 0 0 67 0 67 581 893 1541 + netif.o 0 241 0 0 241 1239 287 1526 + sys_arch.o 0 8 0 0 8 1216 222 1438 + multi_heap_poisoning.o 470 0 964 0 1434 0 0 1434 + heap_caps_init.o 0 4 0 0 4 1030 387 1417 + timers.o 8 56 1149 0 1213 0 233 1390 + mld6.o 0 4 0 0 4 1334 0 1334 + cache_utils.o 4 14 836 0 854 81 390 1311 + raw.o 0 4 0 0 4 1087 223 1310 + esp_timer.o 8 20 702 0 730 429 142 1281 + system_api.o 0 8 589 0 597 0 662 1251 + soc_memory_layout.o 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 51 0 1075 0 0 1075 + log.o 8 268 456 0 732 396 166 1026 + pthread.o 8 8 174 0 190 298 512 992 + icmp6.o 0 0 0 0 0 863 127 990 + port.o 0 16 617 0 633 0 369 986 + rtc_init.o 0 0 980 0 980 0 0 980 + rtc_time.o 0 0 803 0 803 0 137 940 + dport_access.o 8 40 539 0 587 189 129 865 + unity.o 0 108 0 0 108 767 90 857 + esp_ota_ops.o 0 0 0 0 0 123 717 840 + tcpip.o 0 16 0 0 16 644 191 835 + time.o 0 32 139 0 171 691 0 830 + periph_ctrl.o 8 0 0 0 8 520 256 784 + timers.o 0 12 0 0 12 638 131 769 + partition.o 0 8 0 0 8 582 141 723 + locks.o 8 0 552 0 560 0 84 644 + pthread_local_storage.o 8 4 0 0 12 476 126 610 + ipc.o 0 36 159 0 195 329 104 592 + inet_chksum.o 0 0 0 0 0 580 0 580 + tcpip_adapter_lwip.o 0 81 0 0 81 180 359 539 + crosscore_int.o 8 8 204 0 220 126 148 486 + netbuf.o 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 307 155 462 + timer.o 16 0 0 0 16 112 281 409 + int_wdt.o 0 1 87 0 88 301 0 388 + eh_globals.o 0 16 0 0 16 149 193 342 + brownout.o 0 0 0 0 0 145 191 336 + cpu_util.o 0 0 310 0 310 0 0 310 + rtc_module.o 8 8 0 0 16 291 0 299 + xtensa_context.o 0 0 299 0 299 0 0 299 + eh_terminate.o 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 244 12 256 +dport_panic_highint_hdl. 8 0 234 0 242 0 0 242 + syscall_table.o 144 240 0 0 384 67 0 211 + dhcpserver.o 0 4 0 0 4 203 0 203 + freertos_hooks.o 8 128 43 0 179 137 0 188 + test_utils.o 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 56 0 56 98 0 154 + list.o 0 0 142 0 142 0 0 142 + xtensa_intr.o 0 0 104 0 104 0 35 139 + syscalls.o 0 0 94 0 94 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 136 136 + dbg_stubs.o 0 2072 32 0 2104 100 0 132 + ip4_addr.o 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 112 112 + memp.o 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 104 0 104 0 0 104 + lib_a-s_fpclassify.o 0 0 92 0 92 0 0 92 + def.o 0 0 0 0 0 91 0 91 + hw_random.o 0 4 74 0 78 0 0 74 + stack_check.o 0 4 0 0 4 32 42 74 + clock.o 0 0 72 0 72 0 0 72 + reent_init.o 0 0 68 0 68 0 2 70 + app_main.o 0 0 0 0 0 53 10 63 + new_opv.o 0 0 0 0 0 0 56 56 + ip.o 0 60 0 0 60 50 0 50 + uart.o 8 12 0 0 20 38 0 46 +xtensa_vector_defaults.o 0 0 46 0 46 0 0 46 + new_op.o 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 32 0 36 0 0 32 + init.o 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 20 20 + eri.o 0 0 8 0 8 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 4 0 0 4 + eh_term_handler.o 4 0 0 0 4 0 0 4 + eh_unex_handler.o 4 0 0 0 4 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 +The following entries are present in only: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + tasks.c.o 12 700 5737 0 6449 0 451 6200 + esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 + vfs_uart.c.o 116 8 0 0 124 3758 783 4657 + panic.c.o 2029 5 2223 0 4257 0 0 4252 + portasm.S.o 3084 0 476 0 3560 0 0 3560 + intr_alloc.c.o 8 22 656 0 686 1681 704 3049 + queue.c.o 0 0 2411 0 2411 0 366 2777 + uart.c.o 56 12 0 0 68 2099 452 2607 + multi_heap.c.o 300 0 2245 0 2545 0 0 2545 + cpu_start.c.o 0 1 1067 0 1068 255 1073 2395 + rtc_clk.c.o 160 4 2104 0 2268 0 0 2264 + vfs.c.o 192 40 0 0 232 1892 132 2216 + gpio.c.o 32 0 0 0 32 1193 970 2195 + spi_flash_hal_iram.c.o 24 0 1798 0 1822 0 0 1822 + xtensa_vectors.S.o 8 0 1344 425 1777 0 36 1813 + task_wdt.c.o 53 4 0 0 57 1223 494 1770 +spi_flash_chip_generic.c 340 0 1423 0 1763 0 0 1763 + flash_mmap.c.o 0 264 1320 0 1584 125 296 1741 + cache_utils.c.o 4 14 833 0 851 81 430 1348 + heap_caps.c.o 4 0 884 0 888 50 362 1300 + timers.c.o 8 56 1007 0 1071 0 223 1238 + esp_timer_impl_lac.c.o 8 8 514 0 530 322 389 1233 + heap_caps_init.c.o 0 4 0 0 4 834 379 1213 + soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 + periph_ctrl.c.o 8 0 0 0 8 696 488 1192 + port.c.o 0 32 737 0 769 0 340 1077 + xtensa_intr_asm.S.o 1024 0 51 0 1075 0 0 1075 +bootloader_flash_config_ 0 0 1028 0 1028 17 0 1045 + rtc_time.c.o 0 0 819 0 819 0 194 1013 + ringbuf.c.o 0 0 858 0 858 0 150 1008 + rtc_init.c.o 0 0 956 0 956 0 0 956 + esp_flash_api.c.o 0 0 600 0 600 16 244 860 + clk.c.o 0 0 64 0 64 582 208 854 + partition.c.o 0 8 0 0 8 668 181 849 + time.c.o 0 32 123 0 155 719 0 842 + memory_layout_utils.c.o 0 0 0 0 0 505 295 800 + rtc_wdt.c.o 0 0 796 0 796 0 0 796 + esp_timer.c.o 8 12 280 0 300 401 104 793 + dport_access.c.o 8 40 422 0 470 189 126 745 + ipc.c.o 0 56 192 0 248 367 117 676 + log.c.o 8 264 34 0 306 484 147 673 + locks.c.o 8 0 487 0 495 5 84 584 + esp_flash_spi_init.c.o 120 4 0 0 124 191 261 572 + uart_hal.c.o 0 0 0 0 0 493 0 493 + flash_qio_mode.c.o 0 0 0 0 0 490 0 490 + crosscore_int.c.o 8 8 195 0 211 134 146 483 + int_wdt.c.o 0 1 94 0 95 341 0 435 + system_api_esp32.c.o 0 0 435 0 435 0 0 435 + esp_app_desc.c.o 0 0 109 0 109 12 256 377 + lib_a-locale.o 364 0 0 0 364 0 10 374 + uart_hal_iram.c.o 0 0 0 0 0 147 222 369 + xtensa_context.S.o 0 0 367 0 367 0 0 367 + esp_ota_ops.c.o 0 4 0 0 4 147 214 361 + spi_flash_hal.c.o 0 0 0 0 0 302 48 350 + brownout.c.o 0 0 0 0 0 120 203 323 + freertos_hooks.c.o 8 128 47 0 183 243 0 298 + spi_flash_chip_gd.c.o 95 0 181 0 276 0 0 276 + brownout_hal.c.o 0 0 0 0 0 269 0 269 +dport_panic_highint_hdl. 12 0 250 0 262 0 0 262 + soc_hal.c.o 24 0 234 0 258 0 0 258 + memspi_host_driver.c.o 43 0 206 0 249 0 0 249 + rtc_module.c.o 16 8 0 0 24 231 0 247 + syscall_table.c.o 144 240 0 0 384 82 0 226 + debug_helpers.c.o 0 0 217 0 217 0 0 217 + spi_flash_chip_issi.c.o 97 0 101 0 198 0 0 198 +pthread_local_storage.c. 8 4 0 0 12 183 0 191 + log_freertos.c.o 0 8 188 0 196 0 0 188 + gpio_periph.c.o 0 0 0 0 0 0 160 160 + cache_err_int.c.o 0 0 56 0 56 98 0 154 + heap.c.o 0 0 151 0 151 0 0 151 + xtensa_intr.c.o 0 0 113 0 113 0 35 148 +spi_flash_os_func_noos.c 16 0 127 0 143 0 0 143 +spi_flash_os_func_app.c. 24 0 91 0 115 25 0 140 + list.c.o 0 0 138 0 138 0 0 138 + blink.c.o 0 0 0 0 0 72 39 111 + pthread.c.o 0 8 0 0 8 81 0 81 + bootloader_mem.c.o 0 0 0 0 0 58 20 78 + cpu_util.c.o 0 0 75 0 75 0 0 75 + lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 + lib_a-localeconv.o 0 0 0 0 0 63 0 63 + flash_ops.c.o 20 4 14 0 38 29 0 63 + reent_init.c.o 0 0 59 0 59 0 0 59 + rtc_io.c.o 0 0 0 0 0 53 0 53 + syscalls.c.o 0 0 0 0 0 50 0 50 + mpu_hal.c.o 0 0 0 0 0 47 0 47 +xtensa_vector_defaults.S 0 0 46 0 46 0 0 46 + xtensa_init.c.o 0 4 32 0 36 0 0 32 +spi_flash_chip_drivers.c 20 0 0 0 20 0 0 20 + pthread.c.o 0 0 0 0 0 12 0 12 + crtend.o 0 0 0 0 0 0 8 8 + pm_esp32.c.o 0 0 0 0 0 8 0 8 + cpu_hal.c.o 0 0 8 0 8 0 0 8 + crti.o 0 0 0 3 3 3 0 6 +cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 + cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + crtbegin.o 0 0 0 0 0 0 4 4 + FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 4 + crt0.o 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 + bootloader_flash.c.o 0 0 0 0 0 0 0 0 + bootloader_random.c.o 0 0 0 0 0 0 0 0 + bootloader_sha.c.o 0 0 0 0 0 0 0 0 + bootloader_utility.c.o 0 0 0 0 0 0 0 0 + esp_image_format.c.o 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 + isatty.o 0 0 0 0 0 0 0 0 + lib_a-bzero.o 0 0 0 0 0 0 0 0 + lib_a-ctype_.o 0 0 0 0 0 0 0 0 + lib_a-environ.o 0 0 0 0 0 0 0 0 + lib_a-envlock.o 0 0 0 0 0 0 0 0 + lib_a-fclose.o 0 0 0 0 0 0 0 0 + lib_a-fflush.o 0 0 0 0 0 0 0 0 + lib_a-findfp.o 0 0 0 0 0 0 0 0 + lib_a-fputwc.o 0 0 0 0 0 0 0 0 + lib_a-fvwrite.o 0 0 0 0 0 0 0 0 + lib_a-fwalk.o 0 0 0 0 0 0 0 0 + lib_a-getenv_r.o 0 0 0 0 0 0 0 0 + lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 + lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 + lib_a-iswspace.o 0 0 0 0 0 0 0 0 + lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 + lib_a-makebuf.o 0 0 0 0 0 0 0 0 + lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 + lib_a-memchr.o 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 + lib_a-memmove.o 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 + lib_a-month_lengths.o 0 0 0 0 0 0 0 0 + lib_a-putc.o 0 0 0 0 0 0 0 0 + lib_a-putchar.o 0 0 0 0 0 0 0 0 + lib_a-qsort.o 0 0 0 0 0 0 0 0 + lib_a-refill.o 0 0 0 0 0 0 0 0 + lib_a-sccl.o 0 0 0 0 0 0 0 0 + lib_a-siscanf.o 0 0 0 0 0 0 0 0 + lib_a-stdio.o 0 0 0 0 0 0 0 0 + lib_a-strcmp.o 0 0 0 0 0 0 0 0 + lib_a-strcpy.o 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 + lib_a-strerror_r.o 0 0 0 0 0 0 0 0 + lib_a-strlcpy.o 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 + lib_a-strncmp.o 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 + lib_a-strtol.o 0 0 0 0 0 0 0 0 + lib_a-strtoll.o 0 0 0 0 0 0 0 0 + lib_a-strtoul.o 0 0 0 0 0 0 0 0 + lib_a-strtoull.o 0 0 0 0 0 0 0 0 + lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 + lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 + lib_a-tzlock.o 0 0 0 0 0 0 0 0 + lib_a-tzset.o 0 0 0 0 0 0 0 0 + lib_a-tzset_r.o 0 0 0 0 0 0 0 0 + lib_a-tzvars.o 0 0 0 0 0 0 0 0 + lib_a-ungetc.o 0 0 0 0 0 0 0 0 + lib_a-wbuf.o 0 0 0 0 0 0 0 0 + lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 + lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 + lib_a-wsetup.o 0 0 0 0 0 0 0 0 + spi_common.c.o 0 0 0 0 0 0 0 0 + esp_efuse_api.c.o 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.o 0 0 0 0 0 0 0 0 + esp_efuse_table.c.o 0 0 0 0 0 0 0 0 + esp_efuse_utility.c.o 0 0 0 0 0 0 0 0 + hw_random.c.o 0 0 0 0 0 0 0 0 + pm_locks.c.o 0 0 0 0 0 0 0 0 + system_api.c.o 0 0 0 0 0 0 0 0 + _bswapsi2.o 0 0 0 0 0 0 0 0 + esp_sha256.c.o 0 0 0 0 0 0 0 0 + sha.c.o 0 0 0 0 0 0 0 0 + gpio_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_periph.c.o 0 0 0 0 0 0 0 0 + spi_periph.c.o 0 0 0 0 0 0 0 0 + uart_periph.c.o 0 0 0 0 0 0 0 0 + spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 + md5-internal.c.o 0 0 0 0 0 0 0 0 + debug_helpers_asm.S.o 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --files with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 10604 bytes ( 170132 remain, 5.9% used) 17620 -7016 ( +7016 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 +Used static IRAM: 38959 bytes ( 92113 remain, 29.7% used) 38932 +27 ( -27 remain, +0 total) + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used stat D/IRAM: 49563 bytes ( 262245 remain, 15.9% used) 56552 -6989 ( +6989 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used Flash size : 99551 bytes 186524 -86973 + .text : 77191 bytes 146944 -69753 + .rodata : 22360 bytes 39580 -17220 +Total image size: 194629 bytes (.bin may be padded larger) 283036 -88407 +Per-file contributions to ELF file: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + lib_a-vfprintf.o| | | | | | | | | | | | | | | | 13681| 14193| -512| 700| 704| -4| 14381| 14897| -516 + lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13290| 13834| -544| 752| 756| -4| 14042| 14590| -548 + lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9623| 9642| -19| 1172| 1176| -4| 10795| 10818| -23 + lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 700| 704| -4| 10633| 10637| -4 + lib_a-dtoa.o| | | | | | | | | | | | | | | | 3524| 3522| +2| 13| 13| | 3537| 3535| +2 + lib_a-mprec.o| | | | | | | | | | | | | | | | 2140| 2134| +6| 296| 296| | 2436| 2430| +6 + lib_a-fseeko.o| | | | | | | | | | | | | | | | 918| 862| +56| | | | 918| 862| +56 + windowspill_asm.o| | | | | | | 315| 311| +4| | | | 315| 311| +4| | | | | | | 315| 311| +4 + lib_a-fopen.o| | | | | | | | | | | | | | | | 244| 228| +16| | | | 244| 228| +16 + lib_a-reent.o| | | | | | | | | | | | | | | | 236| 232| +4| | | | 236| 232| +4 + lib_a-puts.o| | | | | | | | | | | | | | | | 234| 182| +52| | | | 234| 182| +52 + lib_a-snprintf.o| | | | | | | | | | | | | | | | 217| | +217| | | | 217| | +217 + lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| + lib_a-flags.o| | | | | | | | | | | | | | | | 128| 127| +1| | | | 128| 127| +1 + lib_a-s_frexp.o| | | | | | | | | | | | | | | | 100| 110| -10| | | | 100| 110| -10 + lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| + lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| +state_asm--restore_extra| | | | | | | 62| 62| | | | | 62| 62| | | | | | | | 62| 62| +state_asm--save_extra_nw| | | | | | | 62| 62| | | | | 62| 62| | | | | | | | 62| 62| + lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| + _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| + lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| + int_asm--set_intclear.o| | | | | | | 8| 8| | | | | 8| 8| | | | | | | | 8| 8| + lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-printf.o| | | | | | | | | | | | | | | | | 116| -116| | | | | 116| -116 + lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | + _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + tasks.c.o 12 700 5737 0 6449 0 451 6200 + esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 + vfs_uart.c.o 116 8 0 0 124 3758 783 4657 + panic.c.o 2029 5 2223 0 4257 0 0 4252 + portasm.S.o 3084 0 476 0 3560 0 0 3560 + intr_alloc.c.o 8 22 656 0 686 1681 704 3049 + queue.c.o 0 0 2411 0 2411 0 366 2777 + uart.c.o 56 12 0 0 68 2099 452 2607 + multi_heap.c.o 300 0 2245 0 2545 0 0 2545 + cpu_start.c.o 0 1 1067 0 1068 255 1073 2395 + rtc_clk.c.o 160 4 2104 0 2268 0 0 2264 + vfs.c.o 192 40 0 0 232 1892 132 2216 + gpio.c.o 32 0 0 0 32 1193 970 2195 + spi_flash_hal_iram.c.o 24 0 1798 0 1822 0 0 1822 + xtensa_vectors.S.o 8 0 1344 425 1777 0 36 1813 + task_wdt.c.o 53 4 0 0 57 1223 494 1770 +spi_flash_chip_generic.c 340 0 1423 0 1763 0 0 1763 + flash_mmap.c.o 0 264 1320 0 1584 125 296 1741 + cache_utils.c.o 4 14 833 0 851 81 430 1348 + heap_caps.c.o 4 0 884 0 888 50 362 1300 + timers.c.o 8 56 1007 0 1071 0 223 1238 + esp_timer_impl_lac.c.o 8 8 514 0 530 322 389 1233 + heap_caps_init.c.o 0 4 0 0 4 834 379 1213 + soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 + periph_ctrl.c.o 8 0 0 0 8 696 488 1192 + port.c.o 0 32 737 0 769 0 340 1077 + xtensa_intr_asm.S.o 1024 0 51 0 1075 0 0 1075 +bootloader_flash_config_ 0 0 1028 0 1028 17 0 1045 + rtc_time.c.o 0 0 819 0 819 0 194 1013 + ringbuf.c.o 0 0 858 0 858 0 150 1008 + rtc_init.c.o 0 0 956 0 956 0 0 956 + esp_flash_api.c.o 0 0 600 0 600 16 244 860 + clk.c.o 0 0 64 0 64 582 208 854 + partition.c.o 0 8 0 0 8 668 181 849 + time.c.o 0 32 123 0 155 719 0 842 + memory_layout_utils.c.o 0 0 0 0 0 505 295 800 + rtc_wdt.c.o 0 0 796 0 796 0 0 796 + esp_timer.c.o 8 12 280 0 300 401 104 793 + dport_access.c.o 8 40 422 0 470 189 126 745 + ipc.c.o 0 56 192 0 248 367 117 676 + log.c.o 8 264 34 0 306 484 147 673 + locks.c.o 8 0 487 0 495 5 84 584 + esp_flash_spi_init.c.o 120 4 0 0 124 191 261 572 + uart_hal.c.o 0 0 0 0 0 493 0 493 + flash_qio_mode.c.o 0 0 0 0 0 490 0 490 + crosscore_int.c.o 8 8 195 0 211 134 146 483 + int_wdt.c.o 0 1 94 0 95 341 0 435 + system_api_esp32.c.o 0 0 435 0 435 0 0 435 + esp_app_desc.c.o 0 0 109 0 109 12 256 377 + lib_a-locale.o 364 0 0 0 364 0 10 374 + uart_hal_iram.c.o 0 0 0 0 0 147 222 369 + xtensa_context.S.o 0 0 367 0 367 0 0 367 + esp_ota_ops.c.o 0 4 0 0 4 147 214 361 + spi_flash_hal.c.o 0 0 0 0 0 302 48 350 + brownout.c.o 0 0 0 0 0 120 203 323 + freertos_hooks.c.o 8 128 47 0 183 243 0 298 + spi_flash_chip_gd.c.o 95 0 181 0 276 0 0 276 + brownout_hal.c.o 0 0 0 0 0 269 0 269 +dport_panic_highint_hdl. 12 0 250 0 262 0 0 262 + soc_hal.c.o 24 0 234 0 258 0 0 258 + memspi_host_driver.c.o 43 0 206 0 249 0 0 249 + rtc_module.c.o 16 8 0 0 24 231 0 247 + syscall_table.c.o 144 240 0 0 384 82 0 226 + debug_helpers.c.o 0 0 217 0 217 0 0 217 + spi_flash_chip_issi.c.o 97 0 101 0 198 0 0 198 +pthread_local_storage.c. 8 4 0 0 12 183 0 191 + log_freertos.c.o 0 8 188 0 196 0 0 188 + gpio_periph.c.o 0 0 0 0 0 0 160 160 + cache_err_int.c.o 0 0 56 0 56 98 0 154 + heap.c.o 0 0 151 0 151 0 0 151 + xtensa_intr.c.o 0 0 113 0 113 0 35 148 +spi_flash_os_func_noos.c 16 0 127 0 143 0 0 143 +spi_flash_os_func_app.c. 24 0 91 0 115 25 0 140 + list.c.o 0 0 138 0 138 0 0 138 + blink.c.o 0 0 0 0 0 72 39 111 + pthread.c.o 0 8 0 0 8 81 0 81 + bootloader_mem.c.o 0 0 0 0 0 58 20 78 + cpu_util.c.o 0 0 75 0 75 0 0 75 + lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 + lib_a-localeconv.o 0 0 0 0 0 63 0 63 + flash_ops.c.o 20 4 14 0 38 29 0 63 + reent_init.c.o 0 0 59 0 59 0 0 59 + rtc_io.c.o 0 0 0 0 0 53 0 53 + syscalls.c.o 0 0 0 0 0 50 0 50 + mpu_hal.c.o 0 0 0 0 0 47 0 47 +xtensa_vector_defaults.S 0 0 46 0 46 0 0 46 + xtensa_init.c.o 0 4 32 0 36 0 0 32 +spi_flash_chip_drivers.c 20 0 0 0 20 0 0 20 + pthread.c.o 0 0 0 0 0 12 0 12 + crtend.o 0 0 0 0 0 0 8 8 + pm_esp32.c.o 0 0 0 0 0 8 0 8 + cpu_hal.c.o 0 0 8 0 8 0 0 8 + crti.o 0 0 0 3 3 3 0 6 +cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 + cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + crtbegin.o 0 0 0 0 0 0 4 4 + FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 4 + crt0.o 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 + bootloader_flash.c.o 0 0 0 0 0 0 0 0 + bootloader_random.c.o 0 0 0 0 0 0 0 0 + bootloader_sha.c.o 0 0 0 0 0 0 0 0 + bootloader_utility.c.o 0 0 0 0 0 0 0 0 + esp_image_format.c.o 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 + isatty.o 0 0 0 0 0 0 0 0 + lib_a-bzero.o 0 0 0 0 0 0 0 0 + lib_a-ctype_.o 0 0 0 0 0 0 0 0 + lib_a-environ.o 0 0 0 0 0 0 0 0 + lib_a-envlock.o 0 0 0 0 0 0 0 0 + lib_a-fclose.o 0 0 0 0 0 0 0 0 + lib_a-fflush.o 0 0 0 0 0 0 0 0 + lib_a-findfp.o 0 0 0 0 0 0 0 0 + lib_a-fputwc.o 0 0 0 0 0 0 0 0 + lib_a-fvwrite.o 0 0 0 0 0 0 0 0 + lib_a-fwalk.o 0 0 0 0 0 0 0 0 + lib_a-getenv_r.o 0 0 0 0 0 0 0 0 + lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 + lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 + lib_a-iswspace.o 0 0 0 0 0 0 0 0 + lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 + lib_a-makebuf.o 0 0 0 0 0 0 0 0 + lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 + lib_a-memchr.o 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 + lib_a-memmove.o 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 + lib_a-month_lengths.o 0 0 0 0 0 0 0 0 + lib_a-putc.o 0 0 0 0 0 0 0 0 + lib_a-putchar.o 0 0 0 0 0 0 0 0 + lib_a-qsort.o 0 0 0 0 0 0 0 0 + lib_a-refill.o 0 0 0 0 0 0 0 0 + lib_a-sccl.o 0 0 0 0 0 0 0 0 + lib_a-siscanf.o 0 0 0 0 0 0 0 0 + lib_a-stdio.o 0 0 0 0 0 0 0 0 + lib_a-strcmp.o 0 0 0 0 0 0 0 0 + lib_a-strcpy.o 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 + lib_a-strerror_r.o 0 0 0 0 0 0 0 0 + lib_a-strlcpy.o 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 + lib_a-strncmp.o 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 + lib_a-strtol.o 0 0 0 0 0 0 0 0 + lib_a-strtoll.o 0 0 0 0 0 0 0 0 + lib_a-strtoul.o 0 0 0 0 0 0 0 0 + lib_a-strtoull.o 0 0 0 0 0 0 0 0 + lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 + lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 + lib_a-tzlock.o 0 0 0 0 0 0 0 0 + lib_a-tzset.o 0 0 0 0 0 0 0 0 + lib_a-tzset_r.o 0 0 0 0 0 0 0 0 + lib_a-tzvars.o 0 0 0 0 0 0 0 0 + lib_a-ungetc.o 0 0 0 0 0 0 0 0 + lib_a-wbuf.o 0 0 0 0 0 0 0 0 + lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 + lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 + lib_a-wsetup.o 0 0 0 0 0 0 0 0 + spi_common.c.o 0 0 0 0 0 0 0 0 + esp_efuse_api.c.o 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.o 0 0 0 0 0 0 0 0 + esp_efuse_table.c.o 0 0 0 0 0 0 0 0 + esp_efuse_utility.c.o 0 0 0 0 0 0 0 0 + hw_random.c.o 0 0 0 0 0 0 0 0 + pm_locks.c.o 0 0 0 0 0 0 0 0 + system_api.c.o 0 0 0 0 0 0 0 0 + _bswapsi2.o 0 0 0 0 0 0 0 0 + esp_sha256.c.o 0 0 0 0 0 0 0 0 + sha.c.o 0 0 0 0 0 0 0 0 + gpio_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_periph.c.o 0 0 0 0 0 0 0 0 + spi_periph.c.o 0 0 0 0 0 0 0 0 + uart_periph.c.o 0 0 0 0 0 0 0 0 + spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 + md5-internal.c.o 0 0 0 0 0 0 0 0 + debug_helpers_asm.S.o 0 0 0 0 0 0 0 0 +The following entries are present in only: + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + tcp_in.o 0 54 0 0 54 8127 916 9043 + nd6.o 8 1027 0 0 1035 8427 136 8571 + tasks.o 20 700 5667 0 6387 0 503 6190 + tcp_out.o 0 0 0 0 0 5060 1124 6184 + tcp.o 4 23 0 0 27 4290 1384 5678 + sockets.o 0 728 0 0 728 4627 824 5451 + api_msg.o 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 8 3456 1401 4857 + panic.o 2579 5 2145 0 4729 0 0 4724 + esp_err_to_name.o 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 24 3316 404 3724 + pbuf.o 0 1 0 0 1 2453 1161 3614 + portasm.o 3084 0 480 0 3564 0 0 3564 + ip6.o 0 0 0 0 0 3212 124 3336 + spi_flash_rom_patch.o 0 0 2518 0 2518 0 766 3284 + etharp.o 0 241 0 0 241 2618 658 3276 + udp.o 2 4 0 0 6 3020 216 3238 + intr_alloc.o 8 22 726 0 756 1749 710 3193 + multi_heap.o 857 0 2217 0 3074 0 0 3074 + queue.o 8 56 2569 0 2633 0 369 2946 + unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 + flash_ops.o 32 41 2352 0 2425 99 0 2483 + rtc_clk.o 660 8 1794 0 2462 0 0 2454 + ip6_frag.o 0 6 0 0 6 1905 442 2347 + api_lib.o 0 0 0 0 0 1425 919 2344 + vfs.o 192 40 0 0 232 1995 132 2319 + igmp.o 0 12 0 0 12 1604 707 2311 + unity_platform.o 0 13 0 0 13 1511 600 2111 + vfs_uart.o 40 63 0 0 103 1775 271 2086 + esp_timer_esp32.o 8 26 1295 0 1329 254 526 2083 + rtc_periph.o 0 0 0 0 0 0 2080 2080 + dns.o 0 1292 0 0 1292 1809 206 2015 + heap_caps.o 4 0 1195 0 1199 188 593 1980 + eh_personality.o 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 6 1664 139 1803 + flash_mmap.o 0 296 1298 0 1594 124 327 1749 + xtensa_vectors.o 8 0 1272 425 1705 0 36 1741 + cpu_start.o 0 1 806 0 807 277 486 1569 + clk.o 0 0 67 0 67 581 893 1541 + netif.o 0 241 0 0 241 1239 287 1526 + sys_arch.o 0 8 0 0 8 1216 222 1438 + multi_heap_poisoning.o 470 0 964 0 1434 0 0 1434 + heap_caps_init.o 0 4 0 0 4 1030 387 1417 + timers.o 8 56 1149 0 1213 0 233 1390 + mld6.o 0 4 0 0 4 1334 0 1334 + cache_utils.o 4 14 836 0 854 81 390 1311 + raw.o 0 4 0 0 4 1087 223 1310 + esp_timer.o 8 20 702 0 730 429 142 1281 + system_api.o 0 8 589 0 597 0 662 1251 + soc_memory_layout.o 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 51 0 1075 0 0 1075 + log.o 8 268 456 0 732 396 166 1026 + pthread.o 8 8 174 0 190 298 512 992 + icmp6.o 0 0 0 0 0 863 127 990 + port.o 0 16 617 0 633 0 369 986 + rtc_init.o 0 0 980 0 980 0 0 980 + rtc_time.o 0 0 803 0 803 0 137 940 + dport_access.o 8 40 539 0 587 189 129 865 + unity.o 0 108 0 0 108 767 90 857 + esp_ota_ops.o 0 0 0 0 0 123 717 840 + tcpip.o 0 16 0 0 16 644 191 835 + time.o 0 32 139 0 171 691 0 830 + periph_ctrl.o 8 0 0 0 8 520 256 784 + timers.o 0 12 0 0 12 638 131 769 + partition.o 0 8 0 0 8 582 141 723 + locks.o 8 0 552 0 560 0 84 644 + pthread_local_storage.o 8 4 0 0 12 476 126 610 + ipc.o 0 36 159 0 195 329 104 592 + inet_chksum.o 0 0 0 0 0 580 0 580 + tcpip_adapter_lwip.o 0 81 0 0 81 180 359 539 + crosscore_int.o 8 8 204 0 220 126 148 486 + netbuf.o 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 307 155 462 + timer.o 16 0 0 0 16 112 281 409 + int_wdt.o 0 1 87 0 88 301 0 388 + eh_globals.o 0 16 0 0 16 149 193 342 + brownout.o 0 0 0 0 0 145 191 336 + cpu_util.o 0 0 310 0 310 0 0 310 + rtc_module.o 8 8 0 0 16 291 0 299 + xtensa_context.o 0 0 299 0 299 0 0 299 + eh_terminate.o 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 244 12 256 +dport_panic_highint_hdl. 8 0 234 0 242 0 0 242 + syscall_table.o 144 240 0 0 384 67 0 211 + dhcpserver.o 0 4 0 0 4 203 0 203 + freertos_hooks.o 8 128 43 0 179 137 0 188 + test_utils.o 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 56 0 56 98 0 154 + list.o 0 0 142 0 142 0 0 142 + xtensa_intr.o 0 0 104 0 104 0 35 139 + syscalls.o 0 0 94 0 94 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 136 136 + dbg_stubs.o 0 2072 32 0 2104 100 0 132 + ip4_addr.o 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 112 112 + memp.o 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 104 0 104 0 0 104 + lib_a-s_fpclassify.o 0 0 92 0 92 0 0 92 + def.o 0 0 0 0 0 91 0 91 + hw_random.o 0 4 74 0 78 0 0 74 + stack_check.o 0 4 0 0 4 32 42 74 + clock.o 0 0 72 0 72 0 0 72 + reent_init.o 0 0 68 0 68 0 2 70 + app_main.o 0 0 0 0 0 53 10 63 + new_opv.o 0 0 0 0 0 0 56 56 + ip.o 0 60 0 0 60 50 0 50 + uart.o 8 12 0 0 20 38 0 46 +xtensa_vector_defaults.o 0 0 46 0 46 0 0 46 + new_op.o 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 32 0 36 0 0 32 + init.o 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 20 20 + eri.o 0 0 8 0 8 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 4 0 0 4 + eh_term_handler.o 4 0 0 0 4 0 0 4 + eh_unex_handler.o 4 0 0 0 4 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 + *** Running idf_size.py diff --archive_details with bootloader... MAP file: app.map MAP file: bootloader.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 4 +9320 - DRAM .bss size: 8296 bytes 48 +8248 - DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) - Flash code: 146944 bytes 0 +146944 - Flash rodata: 39580 bytes 0 +39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 11609 +223171 +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 7212 +10408 (+104792 remain, +115200 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .rodata size: 0 bytes 7160 -7160 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 18796 +20136 ( +13656 remain, +33792 total) + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 26008 +30544 (+118448 remain, +148992 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 + .rodata size: 0 bytes 7160 -7160 +Used Flash size : 186524 bytes 0 +186524 + .text : 146944 bytes 0 +146944 + .rodata : 39580 bytes 0 +39580 +Total image size: 283036 bytes (.bin may be padded larger) 51920 +231116 +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + p_uart_obj 12 0 +12 + s_rtc_isr_handle 4 0 +4 + s_rtc_isr_handler_list 4 0 +4 +Section total: 20 0 +20 + +.dram0.data - + periph_spinlock 8 0 +8 + s_rtc_isr_handler_list_lock 8 0 +8 + timer_spinlock 16 0 +16 + uart_selectlock 8 0 +8 +Section total: 40 0 +40 + +.dram0.rodata - +Section total: 0 0 + +.flash.rodata - + TG 8 0 +8 + __FUNCTION__$5441 24 0 +24 + get_clk_en_mask 128 0 +128 + get_rst_en_mask 128 0 +128 + str1.4 249 0 +249 +Section total: 537 0 +537 + +.flash.text - + get_clk_en_mask 211 0 +211 + get_clk_en_reg 21 0 +21 + get_rst_en_mask 157 0 +157 + get_rst_en_reg 25 0 +25 + is_wifi_clk_peripheral 28 0 +28 + periph_module_enable 78 0 +78 + rtc_gpio_force_hold_dis_all 65 0 +65 + rtc_isr 86 0 +86 + rtc_isr_ensure_installed 75 0 +75 + rtc_isr_register 65 0 +65 + timer_group_intr_enable 112 0 +112 + uart_get_selectlock 12 0 +12 + uart_set_select_notif_callback 26 0 +26 +Section total: 961 0 +961 + +.iram.text - +Section total: 0 0 + +.iram0.text - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.iram_loader.text - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + +*** +Running idf_size.py diff --archive_details with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 7212 +10408 (+104792 remain, +115200 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .rodata size: 0 bytes 7160 -7160 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 18796 +20136 ( +13656 remain, +33792 total) + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 26008 +30544 (+118448 remain, +148992 total) + .data size: 9324 bytes 4 +9320 + .bss size: 8296 bytes 48 +8248 + .text size: 37908 bytes 18796 +19112 + .vectors size: 1024 bytes 0 +1024 + .rodata size: 0 bytes 7160 -7160 +Used Flash size : 186524 bytes 0 +186524 + .text : 146944 bytes 0 +146944 + .rodata : 39580 bytes 0 +39580 +Total image size: 283036 bytes (.bin may be padded larger) 51920 +231116 Symbols within the archive: libc.a (Not all symbols may be reported) .dram0.bss - @@ -2413,38 +2620,67 @@ Section total: 0 0 .dram0.data - Section total: 0 0 +.dram0.rodata - +Section total: 0 0 + .flash.rodata - .rodata 3584 0 +3584 - str1.1 305 0 +305 -Section total: 3889 0 +3889 + str1.1 125 0 +125 +Section total: 3709 0 +3709 .flash.text - .literal 548 0 +548 .text 55035 0 +55035 Section total: 55583 0 +55583 +.iram.text - +Section total: 0 0 + .iram0.text - Section total: 0 0 .iram0.vectors - Section total: 0 0 +.iram_loader.text - +Section total: 0 0 + .noinit - Section total: 0 0 +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + *** Running idf_size.py diff --archive_details with itself... MAP file: app.map MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 9324 - DRAM .bss size: 8296 bytes 8296 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) - Flash code: 146944 bytes 146944 - Flash rodata: 39580 bytes 39580 -Total image size:~ 234780 bytes (.bin may be padded larger) 234780 +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 17620 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38932 ( +0 remain, +0 total) + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 56552 ( +0 remain, +0 total) + .data size: 9324 bytes 9324 + .bss size: 8296 bytes 8296 + .text size: 37908 bytes 37908 + .vectors size: 1024 bytes 1024 +Used Flash size : 186524 bytes 186524 + .text : 146944 bytes 146944 + .rodata : 39580 bytes 39580 +Total image size: 283036 bytes (.bin may be padded larger) 283036 Symbols within the archive: libdriver.a (Not all symbols may be reported) .dram0.bss - @@ -2493,19 +2729,39 @@ Section total: 0 0 .noinit - Section total: 0 0 +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + *** Running idf_size.py diff --archive_details with another app... MAP file: app.map MAP file: app2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 8580 +744 - DRAM .bss size: 8296 bytes 2024 +6272 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) - Flash code: 146944 bytes 77191 +69753 - Flash rodata: 39580 bytes 22360 +17220 -Total image size:~ 234780 bytes (.bin may be padded larger) 147087 +87693 +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 10604 +7016 ( -7016 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38959 -27 ( +27 remain, +0 total) + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 49563 +6989 ( -6989 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used Flash size : 186524 bytes 99551 +86973 + .text : 146944 bytes 77191 +69753 + .rodata : 39580 bytes 22360 +17220 +Total image size: 283036 bytes (.bin may be padded larger) 194629 +88407 Symbols within the archive: libdriver.a (Not all symbols may be reported) .dram0.bss - @@ -2613,25 +2869,48 @@ Section total: 961 4272 .iram0.text - Section total: 0 0 +.iram0.text_end - +Section total: 0 0 + .iram0.vectors - Section total: 0 0 .noinit - Section total: 0 0 +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + *** Running idf_size.py diff --archive_details with app in reverse order... MAP file: app2.map MAP file: app.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 8580 bytes 9324 -744 - DRAM .bss size: 2024 bytes 8296 -6272 -Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) -Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) - Flash code: 77191 bytes 146944 -69753 - Flash rodata: 22360 bytes 39580 -17220 -Total image size:~ 147087 bytes (.bin may be padded larger) 234780 -87693 +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 10604 bytes ( 170132 remain, 5.9% used) 17620 -7016 ( +7016 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 +Used static IRAM: 38959 bytes ( 92113 remain, 29.7% used) 38932 +27 ( -27 remain, +0 total) + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used stat D/IRAM: 49563 bytes ( 262245 remain, 15.9% used) 56552 -6989 ( +6989 remain, +0 total) + .data size: 8580 bytes 9324 -744 + .bss size: 2024 bytes 8296 -6272 + .text size: 37932 bytes 37908 +24 + .vectors size: 1027 bytes 1024 +3 +Used Flash size : 99551 bytes 186524 -86973 + .text : 77191 bytes 146944 -69753 + .rodata : 22360 bytes 39580 -17220 +Total image size: 194629 bytes (.bin may be padded larger) 283036 -88407 Symbols within the archive: libdriver.a (Not all symbols may be reported) .dram0.bss - @@ -2739,25 +3018,48 @@ Section total: 4272 961 .iram0.text - Section total: 0 0 +.iram0.text_end - +Section total: 0 0 + .iram0.vectors - Section total: 0 0 .noinit - Section total: 0 0 +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + *** Running idf_size.py diff --archive_details with another app... MAP file: app.map MAP file: app2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 8580 +744 - DRAM .bss size: 8296 bytes 2024 +6272 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) - Flash code: 146944 bytes 77191 +69753 - Flash rodata: 39580 bytes 22360 +17220 -Total image size:~ 234780 bytes (.bin may be padded larger) 147087 +87693 +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 10604 +7016 ( -7016 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 38959 -27 ( +27 remain, +0 total) + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 49563 +6989 ( -6989 remain, +0 total) + .data size: 9324 bytes 8580 +744 + .bss size: 8296 bytes 2024 +6272 + .text size: 37908 bytes 37932 -24 + .vectors size: 1024 bytes 1027 -3 +Used Flash size : 186524 bytes 99551 +86973 + .text : 146944 bytes 77191 +69753 + .rodata : 39580 bytes 22360 +17220 +Total image size: 283036 bytes (.bin may be padded larger) 194629 +88407 Symbols within the archive: libfreertos.a (Not all symbols may be reported) .dram0.bss - @@ -2898,11 +3200,11 @@ Section total: 4156 4140 vPortExitCritical.str1.4 0 44 -44 vPortTaskWrapper.str1.4 0 87 -87 vTaskStartScheduler.str1.4 0 7 -7 - vTaskSwitchCostr1.4 0 212 -212 - xQueueGenericReset.str1.4 0 58 -58 + vTaskSwitchCostr1.4 0 0 + xQueueGenericReset.str1.4 0 0 xTimerCreateTimerTask.str1.4 0 8 -8 xt_unhandled_interrupt.str1.4 0 35 -35 -Section total: 1545 1721 -176 +Section total: 1545 1451 +94 .flash.text - Section total: 0 0 @@ -3014,6 +3316,9 @@ Section total: 0 0 xt_unhandled_interrupt 26 26 Section total: 12428 12459 -31 +.iram0.text_end - +Section total: 0 0 + .iram0.vectors - .DebugExceptionVector.text 6 6 .DoubleExceptionVector.text 15 15 @@ -3030,14479 +3335,8971 @@ Section total: 425 425 .noinit - Section total: 0 0 +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + *** Running idf_size.py for esp32s2... Total sizes: - DRAM .data size: 7152 bytes - DRAM .bss size: 1936 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 43020 bytes ( 350196 available, 10.9% used) - Flash code: 74439 bytes - Flash rodata: 18580 bytes -Total image size:~ 134103 bytes (.bin may be padded larger) +Used stat D/IRAM: 43023 bytes ( 153585 remain, 21.9% used) + .data size: 7152 bytes + .bss size: 1936 bytes + .text size: 32908 bytes + .vectors size: 1027 bytes +Used Flash size : 93019 bytes + .text : 74439 bytes + .rodata : 18580 bytes +Total image size: 134106 bytes (.bin may be padded larger) *** Running idf_size.py for esp32s2 (target autodetected)... Total sizes: - DRAM .data size: 7152 bytes - DRAM .bss size: 1936 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 43020 bytes ( 350196 available, 10.9% used) - Flash code: 74439 bytes - Flash rodata: 18580 bytes -Total image size:~ 134103 bytes (.bin may be padded larger) +Used stat D/IRAM: 43023 bytes ( 153585 remain, 21.9% used) + .data size: 7152 bytes + .bss size: 1936 bytes + .text size: 32908 bytes + .vectors size: 1027 bytes +Used Flash size : 93019 bytes + .text : 74439 bytes + .rodata : 18580 bytes +Total image size: 134106 bytes (.bin may be padded larger) *** Running idf_size.py on bootloader for esp32s2... Total sizes: - DRAM .data size: 4 bytes - DRAM .bss size: 264 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 12094 bytes ( 30914 available, 28.1% used) - Flash code: 0 bytes - Flash rodata: 0 bytes -Total image size:~ 11830 bytes (.bin may be padded larger) +Used stat D/IRAM: 22569 bytes ( -1065 remain, 105.0% used) + .data size: 4 bytes + .bss size: 264 bytes + .text size: 16125 bytes + .rodata size: 6176 bytes +Total image size: 22305 bytes (.bin may be padded larger) *** Running idf_size.py on bootloader for esp32s2 (target autodetected)... Total sizes: - DRAM .data size: 4 bytes - DRAM .bss size: 264 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 12094 bytes ( 30914 available, 28.1% used) - Flash code: 0 bytes - Flash rodata: 0 bytes -Total image size:~ 11830 bytes (.bin may be padded larger) +Used stat D/IRAM: 22569 bytes ( -1065 remain, 105.0% used) + .data size: 4 bytes + .bss size: 264 bytes + .text size: 16125 bytes + .rodata size: 6176 bytes +Total image size: 22305 bytes (.bin may be padded larger) *** Running idf_size.py --archives for esp32s2... Total sizes: - DRAM .data size: 7152 bytes - DRAM .bss size: 1936 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 43020 bytes ( 350196 available, 10.9% used) - Flash code: 74439 bytes - Flash rodata: 18580 bytes -Total image size:~ 134103 bytes (.bin may be padded larger) +Used stat D/IRAM: 43023 bytes ( 153585 remain, 21.9% used) + .data size: 7152 bytes + .bss size: 1936 bytes + .text size: 32908 bytes + .vectors size: 1027 bytes +Used Flash size : 93019 bytes + .text : 74439 bytes + .rodata : 18580 bytes +Total image size: 134106 bytes (.bin may be padded larger) Per-archive contributions to ELF file: - Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - libc.a 364 4 0 0 368 54964 3765 59465 - libfreertos.a 2080 736 0 0 13796 0 1175 17787 - libesp32s2.a 2621 22 0 0 6853 4169 2209 15874 - libsoc.a 405 8 0 0 7488 1574 878 10353 - libspi_flash.a 775 416 0 0 5305 1109 1130 8735 - libvfs.a 272 48 0 0 320 5581 555 6776 - libesp_common.a 8 72 0 0 167 416 5304 5967 - libheap.a 304 4 0 0 3479 888 741 5416 - libdriver.a 80 32 0 0 112 3216 894 4334 - libnewlib.a 152 272 0 0 1236 856 84 2600 - libesp_timer.a 16 20 0 0 704 657 560 1957 - liblog.a 8 272 0 0 874 94 147 1395 - libesp_ringbuf.a 0 0 0 0 858 0 150 1008 - libapp_update.a 0 4 0 0 4 151 470 629 - libmain.a 0 0 0 0 0 192 196 388 - libhal.a 0 0 0 0 337 0 32 369 - libpthread.a 8 12 0 0 20 264 0 304 - libgcc.a 0 0 0 0 0 0 160 160 - (exe) 0 0 0 0 3 3 12 18 - libcxx.a 0 0 0 0 0 11 0 11 - libbootloader_support.a 0 0 0 0 0 0 0 0 - libmbedcrypto.a 0 0 0 0 0 0 0 0 - libsoc_esp32s2.a 0 0 0 0 0 0 0 0 - libwpa_supplicant.a 0 0 0 0 0 0 0 0 - libxtensa.a 0 0 0 0 0 0 0 0 + Archive File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + libc.a 364 4 0 0 368 54964 3645 58973 + libfreertos.a 2080 736 10555 425 13796 0 1175 14235 + libesp32s2.a 2621 22 4210 0 6853 4169 2209 13209 + libsoc.a 405 8 7075 0 7488 1574 878 9932 + libspi_flash.a 775 416 4114 0 5305 1109 1130 7128 + libvfs.a 272 48 0 0 320 5581 555 6408 + libesp_common.a 8 72 87 0 167 416 5304 5815 + libheap.a 304 4 3171 0 3479 888 741 5104 + libdriver.a 80 32 0 0 112 3216 894 4190 + libnewlib.a 152 272 812 0 1236 856 84 1904 + libesp_timer.a 16 20 668 0 704 657 546 1887 + libesp_ringbuf.a 0 0 858 0 858 0 150 1008 + liblog.a 8 272 594 0 874 94 147 843 + libapp_update.a 0 4 0 0 4 151 470 621 + libmain.a 0 0 0 0 0 192 196 388 + libhal.a 0 0 337 0 337 0 32 369 + libpthread.a 8 12 0 0 20 264 0 272 + libgcc.a 0 0 0 0 0 0 160 160 + (exe) 0 0 0 3 3 3 12 18 + libcxx.a 0 0 0 0 0 11 0 11 + libbootloader_support.a 0 0 0 0 0 0 0 0 + libmbedcrypto.a 0 0 0 0 0 0 0 0 + libsoc_esp32s2.a 0 0 0 0 0 0 0 0 + libwpa_supplicant.a 0 0 0 0 0 0 0 0 + libxtensa.a 0 0 0 0 0 0 0 0 *** Running idf_size.py --files for esp32s2... Total sizes: - DRAM .data size: 7152 bytes - DRAM .bss size: 1936 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 43020 bytes ( 350196 available, 10.9% used) - Flash code: 74439 bytes - Flash rodata: 18580 bytes -Total image size:~ 134103 bytes (.bin may be padded larger) +Used stat D/IRAM: 43023 bytes ( 153585 remain, 21.9% used) + .data size: 7152 bytes + .bss size: 1936 bytes + .text size: 32908 bytes + .vectors size: 1027 bytes +Used Flash size : 93019 bytes + .text : 74439 bytes + .rodata : 18580 bytes +Total image size: 134106 bytes (.bin may be padded larger) Per-file contributions to ELF file: - Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total - lib_a-vfprintf.o 0 0 0 0 0 13681 752 14433 - lib_a-svfprintf.o 0 0 0 0 0 13294 752 14046 - lib_a-svfiprintf.o 0 0 0 0 0 9623 1206 10829 - lib_a-vfiprintf.o 0 0 0 0 0 9933 734 10667 - panic.c.o 2552 1 0 0 4874 0 0 7427 - tasks.c.o 12 660 0 0 5626 0 406 6704 - esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 - vfs_uart.c.o 80 8 0 0 88 3689 423 4288 - lib_a-dtoa.o 0 0 0 0 0 3524 13 3537 - portasm.S.o 1544 0 0 0 1909 0 0 3453 - intr_alloc.c.o 8 13 0 0 681 1682 706 3090 - multi_heap.c.o 300 0 0 0 2573 0 0 2873 - queue.c.o 0 0 0 0 2397 0 424 2821 - rtc_clk.c.o 381 8 0 0 2256 0 0 2645 - uart.c.o 40 8 0 0 48 2087 452 2635 - vfs.c.o 192 40 0 0 232 1892 132 2488 - lib_a-mprec.o 0 0 0 0 0 2144 296 2440 - flash_mmap.c.o 0 392 0 0 1592 124 252 2360 -spi_flash_chip_generic.c 340 0 0 0 1757 0 0 2097 - spi_flash_hal_iram.c.o 24 0 0 0 1828 0 0 1852 - task_wdt.c.o 53 4 0 0 57 1190 496 1800 - timers.c.o 8 56 0 0 1051 0 223 1338 - heap_caps.c.o 4 0 0 0 902 50 362 1318 - xtensa_vectors.S.o 0 0 0 0 1289 0 0 1289 - rtc_init.c.o 0 0 0 0 1255 0 8 1263 - heap_caps_init.c.o 0 4 0 0 4 838 379 1225 - log.c.o 8 264 0 0 678 94 147 1191 - cpu_start.c.o 0 0 0 0 536 152 489 1177 -esp_timer_impl_systimer. 8 8 0 0 404 252 442 1114 - xtensa_intr_asm.S.o 512 0 0 0 563 0 0 1075 - ringbuf.c.o 0 0 0 0 858 0 150 1008 - periph_ctrl.c.o 8 0 0 0 8 661 272 949 - clk.c.o 0 0 0 0 34 626 281 941 - lib_a-fseeko.o 0 0 0 0 0 910 0 910 - time.c.o 0 32 0 0 147 719 0 898 - partition.c.o 0 8 0 0 8 679 181 876 - esp_flash_api.c.o 0 0 0 0 600 16 240 856 - esp_timer.c.o 8 12 0 0 300 405 118 843 - syscall_table.c.o 144 240 0 0 384 70 0 838 - memory_layout_utils.c.o 0 0 0 0 0 509 295 804 - rtc_wdt.c.o 0 0 0 0 800 0 0 800 - esp_flash_spi_init.c.o 120 4 0 0 124 215 281 744 - lib_a-locale.o 364 0 0 0 364 0 10 738 - rtc_time.c.o 0 0 0 0 626 0 0 626 - locks.c.o 8 0 0 0 495 5 84 592 - port.c.o 0 16 0 0 424 0 87 527 - crosscore_int.c.o 8 4 0 0 166 86 237 501 - soc_memory_layout.c.o 0 0 0 0 0 0 479 479 - freertos_hooks.c.o 8 64 0 0 119 243 0 434 - timer.c.o 16 16 0 0 32 184 170 418 - rtc_sleep.c.o 0 0 0 0 414 0 0 414 - cache_utils.c.o 0 8 0 0 205 21 176 410 - uart_hal.c.o 0 0 0 0 0 409 0 409 - spi_flash_hal.c.o 0 0 0 0 0 309 96 405 - hello_world_main.c.o 0 0 0 0 0 192 196 388 - esp_ota_ops.c.o 0 4 0 0 4 151 214 373 - spi_flash_chip_gd.c.o 95 0 0 0 276 0 0 371 - lib_a-refill.o 0 0 0 0 0 368 0 368 - int_wdt.c.o 0 0 0 0 59 302 0 361 - system_api_esp32s2.c.o 0 0 0 0 323 27 0 350 - brownout.c.o 0 0 0 0 0 120 203 323 - windowspill_asm.o 0 0 0 0 315 0 0 315 - cpu_util.c.o 0 0 0 0 309 0 0 309 - brownout_hal.c.o 0 0 0 0 0 304 0 304 - spi_flash_chip_issi.c.o 97 0 0 0 198 0 0 295 - memspi_host_driver.c.o 43 0 0 0 249 0 0 292 - rtc_module.c.o 16 8 0 0 24 231 0 279 - esp_app_desc.c.o 0 0 0 0 0 0 256 256 - lib_a-fopen.o 0 0 0 0 0 244 0 244 - lib_a-puts.o 0 0 0 0 0 234 2 236 - lib_a-reent.o 0 0 0 0 0 236 0 236 - lib_a-snprintf.o 0 0 0 0 0 217 0 217 -pthread_local_storage.c. 8 4 0 0 12 183 0 207 - log_freertos.c.o 0 8 0 0 196 0 0 204 - xtensa_context.S.o 0 0 0 0 201 0 0 201 -spi_flash_os_func_app.c. 24 0 0 0 119 25 0 168 - heap.c.o 0 0 0 0 151 0 0 151 - xtensa_intr.c.o 0 0 0 0 112 0 35 147 - list.c.o 0 0 0 0 138 0 0 138 - lib_a-flags.o 0 0 0 0 0 128 0 128 -dport_panic_highint_hdl. 0 0 0 0 123 0 0 123 -spi_flash_os_func_noos.c 16 0 0 0 105 0 0 121 - lib_a-printf.o 0 0 0 0 0 116 0 116 - flash_ops.c.o 20 4 0 0 52 29 0 105 - lib_a-s_frexp.o 0 0 0 0 0 100 0 100 - pthread.c.o 0 8 0 0 8 81 0 97 - cache_err_int.c.o 0 0 0 0 0 96 0 96 - lib_a-vprintf.o 0 0 0 0 0 94 0 94 - lib_a-localeconv.o 0 0 0 0 0 63 0 63 - reent_init.c.o 0 0 0 0 59 0 0 59 - system_api.c.o 0 8 0 0 48 0 0 56 - rtc_io.c.o 0 0 0 0 0 53 0 53 - syscalls.c.o 0 0 0 0 0 50 0 50 -xtensa_vector_defaults.S 0 0 0 0 46 0 0 46 - lib_a-fseek.o 0 0 0 0 0 45 0 45 - uart_hal_iram.c.o 0 0 0 0 0 43 0 43 - xtensa_init.c.o 0 4 0 0 36 0 0 40 - _divdi3.o 0 0 0 0 0 0 40 40 - _moddi3.o 0 0 0 0 0 0 40 40 - _udivdi3.o 0 0 0 0 0 0 40 40 - _umoddi3.o 0 0 0 0 0 0 40 40 -spi_flash_chip_drivers.c 20 0 0 0 20 0 0 40 - interrupts--intlevel.o 0 0 0 0 0 0 32 32 - pthread.c.o 0 0 0 0 0 12 0 12 - lib_a-errno.o 0 0 0 0 0 10 0 10 - crtend.o 0 0 0 0 0 0 8 8 - lib_a-environ.o 0 4 0 0 4 0 0 8 - pm_esp32s2.c.o 0 0 0 0 0 8 0 8 - FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 8 - int_asm--set_intclear.o 0 0 0 0 8 0 0 8 -state_asm--restore_extra 0 0 0 0 7 0 0 7 -state_asm--save_extra_nw 0 0 0 0 7 0 0 7 - crti.o 0 0 0 0 3 3 0 6 -cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 - cxx_guards.cpp.o 0 0 0 0 0 5 0 5 - crtbegin.o 0 0 0 0 0 0 4 4 - crt0.o 0 0 0 0 0 0 0 0 - crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 -bootloader_efuse_esp32s2 0 0 0 0 0 0 0 0 - bootloader_flash.c.o 0 0 0 0 0 0 0 0 - bootloader_random.c.o 0 0 0 0 0 0 0 0 - bootloader_sha.c.o 0 0 0 0 0 0 0 0 - bootloader_utility.c.o 0 0 0 0 0 0 0 0 - esp_image_format.c.o 0 0 0 0 0 0 0 0 - flash_partitions.c.o 0 0 0 0 0 0 0 0 - isatty.o 0 0 0 0 0 0 0 0 - lib_a-assert.o 0 0 0 0 0 0 0 0 - lib_a-bzero.o 0 0 0 0 0 0 0 0 - lib_a-ctype_.o 0 0 0 0 0 0 0 0 - lib_a-envlock.o 0 0 0 0 0 0 0 0 - lib_a-fclose.o 0 0 0 0 0 0 0 0 - lib_a-fflush.o 0 0 0 0 0 0 0 0 - lib_a-findfp.o 0 0 0 0 0 0 0 0 - lib_a-fiprintf.o 0 0 0 0 0 0 0 0 - lib_a-fputs.o 0 0 0 0 0 0 0 0 - lib_a-fputwc.o 0 0 0 0 0 0 0 0 - lib_a-fvwrite.o 0 0 0 0 0 0 0 0 - lib_a-fwalk.o 0 0 0 0 0 0 0 0 - lib_a-getenv_r.o 0 0 0 0 0 0 0 0 - lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 - lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 - lib_a-impure.o 0 0 0 0 0 0 0 0 - lib_a-iswspace.o 0 0 0 0 0 0 0 0 - lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 - lib_a-makebuf.o 0 0 0 0 0 0 0 0 - lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 - lib_a-mbtowc_r.o 0 0 0 0 0 0 0 0 - lib_a-memchr.o 0 0 0 0 0 0 0 0 - lib_a-memcmp.o 0 0 0 0 0 0 0 0 - lib_a-memcpy.o 0 0 0 0 0 0 0 0 - lib_a-memmove.o 0 0 0 0 0 0 0 0 - lib_a-memset.o 0 0 0 0 0 0 0 0 - lib_a-month_lengths.o 0 0 0 0 0 0 0 0 - lib_a-putc.o 0 0 0 0 0 0 0 0 - lib_a-putchar.o 0 0 0 0 0 0 0 0 - lib_a-qsort.o 0 0 0 0 0 0 0 0 - lib_a-sccl.o 0 0 0 0 0 0 0 0 - lib_a-siscanf.o 0 0 0 0 0 0 0 0 - lib_a-stdio.o 0 0 0 0 0 0 0 0 - lib_a-strcmp.o 0 0 0 0 0 0 0 0 - lib_a-strcpy.o 0 0 0 0 0 0 0 0 - lib_a-strcspn.o 0 0 0 0 0 0 0 0 - lib_a-strerror.o 0 0 0 0 0 0 0 0 - lib_a-strerror_r.o 0 0 0 0 0 0 0 0 - lib_a-strlcpy.o 0 0 0 0 0 0 0 0 - lib_a-strlen.o 0 0 0 0 0 0 0 0 - lib_a-strncmp.o 0 0 0 0 0 0 0 0 - lib_a-strncpy.o 0 0 0 0 0 0 0 0 - lib_a-strstr.o 0 0 0 0 0 0 0 0 - lib_a-strtol.o 0 0 0 0 0 0 0 0 - lib_a-strtoll.o 0 0 0 0 0 0 0 0 - lib_a-strtoul.o 0 0 0 0 0 0 0 0 - lib_a-strtoull.o 0 0 0 0 0 0 0 0 - lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 - lib_a-sysgettod.o 0 0 0 0 0 0 0 0 - lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 - lib_a-tzlock.o 0 0 0 0 0 0 0 0 - lib_a-tzset.o 0 0 0 0 0 0 0 0 - lib_a-tzset_r.o 0 0 0 0 0 0 0 0 - lib_a-tzvars.o 0 0 0 0 0 0 0 0 - lib_a-u_strerr.o 0 0 0 0 0 0 0 0 - lib_a-ungetc.o 0 0 0 0 0 0 0 0 - lib_a-wbuf.o 0 0 0 0 0 0 0 0 - lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 - lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 - lib_a-wsetup.o 0 0 0 0 0 0 0 0 - gpio.c.o 0 0 0 0 0 0 0 0 - spi_common.c.o 0 0 0 0 0 0 0 0 - hw_random.c.o 0 0 0 0 0 0 0 0 - pm_locks.c.o 0 0 0 0 0 0 0 0 - _addsubdf3.o 0 0 0 0 0 0 0 0 - _cmpdf2.o 0 0 0 0 0 0 0 0 - _divdf3.o 0 0 0 0 0 0 0 0 - _fixdfsi.o 0 0 0 0 0 0 0 0 - _floatdidf.o 0 0 0 0 0 0 0 0 - _floatsidf.o 0 0 0 0 0 0 0 0 - _muldf3.o 0 0 0 0 0 0 0 0 - esp_mem.c.o 0 0 0 0 0 0 0 0 - platform.c.o 0 0 0 0 0 0 0 0 - platform_util.c.o 0 0 0 0 0 0 0 0 - sha256.c.o 0 0 0 0 0 0 0 0 - gpio_hal.c.o 0 0 0 0 0 0 0 0 - rtc_io_hal.c.o 0 0 0 0 0 0 0 0 - spi_flash_hal_gpspi.c.o 0 0 0 0 0 0 0 0 - timer_hal.c.o 0 0 0 0 0 0 0 0 - gpio_periph.c.o 0 0 0 0 0 0 0 0 - rtc_io_periph.c.o 0 0 0 0 0 0 0 0 - spi_periph.c.o 0 0 0 0 0 0 0 0 - uart_periph.c.o 0 0 0 0 0 0 0 0 - md5-internal.c.o 0 0 0 0 0 0 0 0 - stdatomic.c.o 0 0 0 0 0 0 0 0 + Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total + lib_a-vfprintf.o 0 0 0 0 0 13681 700 14381 + lib_a-svfprintf.o 0 0 0 0 0 13294 752 14046 + lib_a-svfiprintf.o 0 0 0 0 0 9623 1172 10795 + lib_a-vfiprintf.o 0 0 0 0 0 9933 700 10633 + tasks.c.o 12 660 4954 0 5626 0 406 5372 + esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 + panic.c.o 2552 1 2321 0 4874 0 0 4873 + vfs_uart.c.o 80 8 0 0 88 3689 423 4192 + lib_a-dtoa.o 0 0 0 0 0 3524 13 3537 + intr_alloc.c.o 8 13 660 0 681 1682 706 3056 + queue.c.o 0 0 2397 0 2397 0 424 2821 + uart.c.o 40 8 0 0 48 2087 452 2579 + multi_heap.c.o 300 0 2273 0 2573 0 0 2573 + lib_a-mprec.o 0 0 0 0 0 2144 296 2440 + rtc_clk.c.o 381 8 1867 0 2256 0 0 2248 + vfs.c.o 192 40 0 0 232 1892 132 2216 + portasm.S.o 1544 0 365 0 1909 0 0 1909 + spi_flash_hal_iram.c.o 24 0 1804 0 1828 0 0 1828 +spi_flash_chip_generic.c 340 0 1417 0 1757 0 0 1757 + task_wdt.c.o 53 4 0 0 57 1190 496 1739 + flash_mmap.c.o 0 392 1200 0 1592 124 252 1576 + heap_caps.c.o 4 0 898 0 902 50 362 1314 + xtensa_vectors.S.o 0 0 864 425 1289 0 0 1289 + rtc_init.c.o 0 0 1255 0 1255 0 8 1263 + timers.c.o 8 56 987 0 1051 0 223 1218 + heap_caps_init.c.o 0 4 0 0 4 838 379 1217 + cpu_start.c.o 0 0 536 0 536 152 489 1177 +esp_timer_impl_systimer. 8 8 388 0 404 252 442 1090 + ringbuf.c.o 0 0 858 0 858 0 150 1008 + periph_ctrl.c.o 8 0 0 0 8 661 272 941 + clk.c.o 0 0 34 0 34 626 281 941 + lib_a-fseeko.o 0 0 0 0 0 910 0 910 + partition.c.o 0 8 0 0 8 679 181 860 + esp_flash_api.c.o 0 0 600 0 600 16 240 856 + time.c.o 0 32 115 0 147 719 0 834 + memory_layout_utils.c.o 0 0 0 0 0 509 295 804 + rtc_wdt.c.o 0 0 800 0 800 0 0 800 + esp_timer.c.o 8 12 280 0 300 405 104 797 + log.c.o 8 264 406 0 678 94 147 655 + rtc_time.c.o 0 0 626 0 626 0 0 626 + esp_flash_spi_init.c.o 120 4 0 0 124 215 281 616 + locks.c.o 8 0 487 0 495 5 84 584 + xtensa_intr_asm.S.o 512 0 51 0 563 0 0 563 + port.c.o 0 16 408 0 424 0 87 495 + crosscore_int.c.o 8 4 154 0 166 86 237 485 + soc_memory_layout.c.o 0 0 0 0 0 0 479 479 + rtc_sleep.c.o 0 0 414 0 414 0 0 414 + uart_hal.c.o 0 0 0 0 0 409 0 409 + spi_flash_hal.c.o 0 0 0 0 0 309 96 405 + cache_utils.c.o 0 8 197 0 205 21 176 394 + hello_world_main.c.o 0 0 0 0 0 192 196 388 + lib_a-locale.o 364 0 0 0 364 0 10 374 + timer.c.o 16 16 0 0 32 184 170 370 + lib_a-refill.o 0 0 0 0 0 368 0 368 + esp_ota_ops.c.o 0 4 0 0 4 151 214 365 + int_wdt.c.o 0 0 59 0 59 302 0 361 + system_api_esp32s2.c.o 0 0 323 0 323 27 0 350 + brownout.c.o 0 0 0 0 0 120 203 323 + windowspill_asm.o 0 0 315 0 315 0 0 315 + cpu_util.c.o 0 0 309 0 309 0 0 309 + brownout_hal.c.o 0 0 0 0 0 304 0 304 + freertos_hooks.c.o 8 64 47 0 119 243 0 298 + spi_flash_chip_gd.c.o 95 0 181 0 276 0 0 276 + esp_app_desc.c.o 0 0 0 0 0 0 256 256 + memspi_host_driver.c.o 43 0 206 0 249 0 0 249 + rtc_module.c.o 16 8 0 0 24 231 0 247 + lib_a-fopen.o 0 0 0 0 0 244 0 244 + lib_a-puts.o 0 0 0 0 0 234 2 236 + lib_a-reent.o 0 0 0 0 0 236 0 236 + lib_a-snprintf.o 0 0 0 0 0 217 0 217 + syscall_table.c.o 144 240 0 0 384 70 0 214 + xtensa_context.S.o 0 0 201 0 201 0 0 201 + spi_flash_chip_issi.c.o 97 0 101 0 198 0 0 198 +pthread_local_storage.c. 8 4 0 0 12 183 0 191 + log_freertos.c.o 0 8 188 0 196 0 0 188 + heap.c.o 0 0 151 0 151 0 0 151 + xtensa_intr.c.o 0 0 112 0 112 0 35 147 +spi_flash_os_func_app.c. 24 0 95 0 119 25 0 144 + list.c.o 0 0 138 0 138 0 0 138 + lib_a-flags.o 0 0 0 0 0 128 0 128 +dport_panic_highint_hdl. 0 0 123 0 123 0 0 123 + lib_a-printf.o 0 0 0 0 0 116 0 116 +spi_flash_os_func_noos.c 16 0 89 0 105 0 0 105 + lib_a-s_frexp.o 0 0 0 0 0 100 0 100 + cache_err_int.c.o 0 0 0 0 0 96 0 96 + lib_a-vprintf.o 0 0 0 0 0 94 0 94 + pthread.c.o 0 8 0 0 8 81 0 81 + flash_ops.c.o 20 4 28 0 52 29 0 77 + lib_a-localeconv.o 0 0 0 0 0 63 0 63 + reent_init.c.o 0 0 59 0 59 0 0 59 + rtc_io.c.o 0 0 0 0 0 53 0 53 + syscalls.c.o 0 0 0 0 0 50 0 50 +xtensa_vector_defaults.S 0 0 46 0 46 0 0 46 + lib_a-fseek.o 0 0 0 0 0 45 0 45 + uart_hal_iram.c.o 0 0 0 0 0 43 0 43 + system_api.c.o 0 8 40 0 48 0 0 40 + _divdi3.o 0 0 0 0 0 0 40 40 + _moddi3.o 0 0 0 0 0 0 40 40 + _udivdi3.o 0 0 0 0 0 0 40 40 + _umoddi3.o 0 0 0 0 0 0 40 40 + xtensa_init.c.o 0 4 32 0 36 0 0 32 + interrupts--intlevel.o 0 0 0 0 0 0 32 32 +spi_flash_chip_drivers.c 20 0 0 0 20 0 0 20 + pthread.c.o 0 0 0 0 0 12 0 12 + lib_a-errno.o 0 0 0 0 0 10 0 10 + crtend.o 0 0 0 0 0 0 8 8 + pm_esp32s2.c.o 0 0 0 0 0 8 0 8 + int_asm--set_intclear.o 0 0 8 0 8 0 0 8 +state_asm--restore_extra 0 0 7 0 7 0 0 7 +state_asm--save_extra_nw 0 0 7 0 7 0 0 7 + crti.o 0 0 0 3 3 3 0 6 +cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 + cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + crtbegin.o 0 0 0 0 0 0 4 4 + FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 4 + crt0.o 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32s2 0 0 0 0 0 0 0 0 + bootloader_flash.c.o 0 0 0 0 0 0 0 0 + bootloader_random.c.o 0 0 0 0 0 0 0 0 + bootloader_sha.c.o 0 0 0 0 0 0 0 0 + bootloader_utility.c.o 0 0 0 0 0 0 0 0 + esp_image_format.c.o 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 + isatty.o 0 0 0 0 0 0 0 0 + lib_a-assert.o 0 0 0 0 0 0 0 0 + lib_a-bzero.o 0 0 0 0 0 0 0 0 + lib_a-ctype_.o 0 0 0 0 0 0 0 0 + lib_a-environ.o 0 4 0 0 4 0 0 0 + lib_a-envlock.o 0 0 0 0 0 0 0 0 + lib_a-fclose.o 0 0 0 0 0 0 0 0 + lib_a-fflush.o 0 0 0 0 0 0 0 0 + lib_a-findfp.o 0 0 0 0 0 0 0 0 + lib_a-fiprintf.o 0 0 0 0 0 0 0 0 + lib_a-fputs.o 0 0 0 0 0 0 0 0 + lib_a-fputwc.o 0 0 0 0 0 0 0 0 + lib_a-fvwrite.o 0 0 0 0 0 0 0 0 + lib_a-fwalk.o 0 0 0 0 0 0 0 0 + lib_a-getenv_r.o 0 0 0 0 0 0 0 0 + lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 + lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 + lib_a-iswspace.o 0 0 0 0 0 0 0 0 + lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 + lib_a-makebuf.o 0 0 0 0 0 0 0 0 + lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 + lib_a-mbtowc_r.o 0 0 0 0 0 0 0 0 + lib_a-memchr.o 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 + lib_a-memmove.o 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 + lib_a-month_lengths.o 0 0 0 0 0 0 0 0 + lib_a-putc.o 0 0 0 0 0 0 0 0 + lib_a-putchar.o 0 0 0 0 0 0 0 0 + lib_a-qsort.o 0 0 0 0 0 0 0 0 + lib_a-sccl.o 0 0 0 0 0 0 0 0 + lib_a-siscanf.o 0 0 0 0 0 0 0 0 + lib_a-stdio.o 0 0 0 0 0 0 0 0 + lib_a-strcmp.o 0 0 0 0 0 0 0 0 + lib_a-strcpy.o 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 + lib_a-strerror.o 0 0 0 0 0 0 0 0 + lib_a-strerror_r.o 0 0 0 0 0 0 0 0 + lib_a-strlcpy.o 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 + lib_a-strncmp.o 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 + lib_a-strtol.o 0 0 0 0 0 0 0 0 + lib_a-strtoll.o 0 0 0 0 0 0 0 0 + lib_a-strtoul.o 0 0 0 0 0 0 0 0 + lib_a-strtoull.o 0 0 0 0 0 0 0 0 + lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 + lib_a-sysgettod.o 0 0 0 0 0 0 0 0 + lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 + lib_a-tzlock.o 0 0 0 0 0 0 0 0 + lib_a-tzset.o 0 0 0 0 0 0 0 0 + lib_a-tzset_r.o 0 0 0 0 0 0 0 0 + lib_a-tzvars.o 0 0 0 0 0 0 0 0 + lib_a-u_strerr.o 0 0 0 0 0 0 0 0 + lib_a-ungetc.o 0 0 0 0 0 0 0 0 + lib_a-wbuf.o 0 0 0 0 0 0 0 0 + lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 + lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 + lib_a-wsetup.o 0 0 0 0 0 0 0 0 + gpio.c.o 0 0 0 0 0 0 0 0 + spi_common.c.o 0 0 0 0 0 0 0 0 + hw_random.c.o 0 0 0 0 0 0 0 0 + pm_locks.c.o 0 0 0 0 0 0 0 0 + _addsubdf3.o 0 0 0 0 0 0 0 0 + _cmpdf2.o 0 0 0 0 0 0 0 0 + _divdf3.o 0 0 0 0 0 0 0 0 + _fixdfsi.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatsidf.o 0 0 0 0 0 0 0 0 + _muldf3.o 0 0 0 0 0 0 0 0 + esp_mem.c.o 0 0 0 0 0 0 0 0 + platform.c.o 0 0 0 0 0 0 0 0 + platform_util.c.o 0 0 0 0 0 0 0 0 + sha256.c.o 0 0 0 0 0 0 0 0 + gpio_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_hal.c.o 0 0 0 0 0 0 0 0 + spi_flash_hal_gpspi.c.o 0 0 0 0 0 0 0 0 + timer_hal.c.o 0 0 0 0 0 0 0 0 + gpio_periph.c.o 0 0 0 0 0 0 0 0 + rtc_io_periph.c.o 0 0 0 0 0 0 0 0 + spi_periph.c.o 0 0 0 0 0 0 0 0 + uart_periph.c.o 0 0 0 0 0 0 0 0 + md5-internal.c.o 0 0 0 0 0 0 0 0 + stdatomic.c.o 0 0 0 0 0 0 0 0 *** Running idf_size.py --archive_details for esp32s2... Total sizes: - DRAM .data size: 7152 bytes - DRAM .bss size: 1936 bytes -Used static DRAM: 0 bytes ( 0 available, nan% used) -Used static IRAM: 0 bytes ( 0 available, nan% used) -Used stat D/IRAM: 43020 bytes ( 350196 available, 10.9% used) - Flash code: 74439 bytes - Flash rodata: 18580 bytes -Total image size:~ 134103 bytes (.bin may be padded larger) +Used stat D/IRAM: 43023 bytes ( 153585 remain, 21.9% used) + .data size: 7152 bytes + .bss size: 1936 bytes + .text size: 32908 bytes + .vectors size: 1027 bytes +Used Flash size : 93019 bytes + .text : 74439 bytes + .rodata : 18580 bytes +Total image size: 134106 bytes (.bin may be padded larger) Symbols within the archive: libdriver.a (Not all symbols may be reported) -Symbols from section: .dram0.bss -p_timer_obj(16) p_uart_obj(8) s_rtc_isr_handle(4) s_rtc_isr_handler_list(4) -Section total: 32 +.dram0.bss - + p_timer_obj 16 0 +16 + p_uart_obj 8 0 +8 + s_rtc_isr_handle 4 0 +4 + s_rtc_isr_handler_list 4 0 +4 +Section total: 32 0 +32 -Symbols from section: .dram0.data -uart_context(32) timer_spinlock(16) periph_spinlock(8) rtc_spinlock(8) s_rtc_isr_handler_list_lock(8) uart_selectlock(8) -Section total: 80 +.dram0.data - + periph_spinlock 8 0 +8 + rtc_spinlock 8 0 +8 + s_rtc_isr_handler_list_lock 8 0 +8 + timer_spinlock 16 0 +16 + uart_context 32 0 +32 + uart_selectlock 8 0 +8 +Section total: 80 0 +80 -Symbols from section: .flash.rodata -timer_get_counter_value.str1.4(146) get_clk_en_mask(136) get_rst_en_mask(136) uart_pattern_enqueue.str1.4(88) uart_flush_input.str1.4(45) uart_set_word_length.str1.4(31) __FUNCTION__$7196(27) __FUNCTION__$5699(24) __FUNCTION__$6971(23) __FUNCTION__$6966(22) __FUNCTION__$6896(21) __FUNCTION__$6901(21) __FUNCTION__$6906(19) __FUNCTION__$6911(19) __FUNCTION__$6926(18) __FUNCTION__$6932(18) __FUNCTION__$7131(18) uart_pattern_pop_pos.str1.4(18) __FUNCTION__$7202(17) __FUNCTION__$6916(16) __FUNCTION__$6921(16) uart_set_stop_bits.str1.4(15) -Section total: 894 +.flash.rodata - + __FUNCTION__$5699 24 0 +24 + __FUNCTION__$6896 21 0 +21 + __FUNCTION__$6901 21 0 +21 + __FUNCTION__$6906 19 0 +19 + __FUNCTION__$6911 19 0 +19 + __FUNCTION__$6916 16 0 +16 + __FUNCTION__$6921 16 0 +16 + __FUNCTION__$6926 18 0 +18 + __FUNCTION__$6932 18 0 +18 + __FUNCTION__$6966 22 0 +22 + __FUNCTION__$6971 23 0 +23 + __FUNCTION__$7131 18 0 +18 + __FUNCTION__$7196 27 0 +27 + __FUNCTION__$7202 17 0 +17 + get_clk_en_mask 136 0 +136 + get_rst_en_mask 136 0 +136 + timer_get_counter_value.str1.4 146 0 +146 + uart_flush_input.str1.4 45 0 +45 + uart_pattern_enqueue.str1.4 88 0 +88 + uart_pattern_pop_pos.str1.4 18 0 +18 + uart_set_stop_bits.str1.4 15 0 +15 + uart_set_word_length.str1.4 31 0 +31 +Section total: 894 0 +894 -Symbols from section: .flash.text -uart_flush_input(453) uart_wait_tx_done(417) get_clk_en_mask(267) get_rst_en_mask(198) timer_group_intr_enable(184) uart_set_word_length(144) uart_set_stop_bits(128) periph_module_enable(112) uart_get_bufferedlen(109) uart_enable_intr_mask(98) uart_disable_intr_mask(96) uart_set_baudrate(96) rtc_isr(90) uart_get_baudrate(82) uart_set_parity(82) rtc_isr_ensure_installed(79) uart_pattern_queue_update(74) uart_get_parity(69) uart_get_stop_bits(69) uart_get_word_length(69) rtc_isr_register(62) rtc_gpio_force_hold_dis_all(53) is_wifi_clk_peripheral(38) uart_is_driver_installed(30) get_rst_en_reg(25) uart_set_select_notif_callback(23) get_clk_en_reg(21) uart_disable_rx_intr(18) uart_enable_rx_intr(18) uart_get_selectlock(12) -Section total: 3216 +.flash.text - + get_clk_en_mask 267 0 +267 + get_clk_en_reg 21 0 +21 + get_rst_en_mask 198 0 +198 + get_rst_en_reg 25 0 +25 + is_wifi_clk_peripheral 38 0 +38 + periph_module_enable 112 0 +112 + rtc_gpio_force_hold_dis_all 53 0 +53 + rtc_isr 90 0 +90 + rtc_isr_ensure_installed 79 0 +79 + rtc_isr_register 62 0 +62 + timer_group_intr_enable 184 0 +184 + uart_disable_intr_mask 96 0 +96 + uart_disable_rx_intr 18 0 +18 + uart_enable_intr_mask 98 0 +98 + uart_enable_rx_intr 18 0 +18 + uart_flush_input 453 0 +453 + uart_get_baudrate 82 0 +82 + uart_get_bufferedlen 109 0 +109 + uart_get_parity 69 0 +69 + uart_get_selectlock 12 0 +12 + uart_get_stop_bits 69 0 +69 + uart_get_word_length 69 0 +69 + uart_is_driver_installed 30 0 +30 + uart_pattern_queue_update 74 0 +74 + uart_set_baudrate 96 0 +96 + uart_set_parity 82 0 +82 + uart_set_select_notif_callback 23 0 +23 + uart_set_stop_bits 128 0 +128 + uart_set_word_length 144 0 +144 + uart_wait_tx_done 417 0 +417 +Section total: 3216 0 +3216 -Symbols from section: .iram0.text -Section total: 0 +.iram0.text - +Section total: 0 0 -Symbols from section: .iram0.vectors -Section total: 0 +.iram0.text_end - +Section total: 0 0 -Symbols from section: .noinit -Section total: 0 +.iram0.vectors - +Section total: 0 0 -Symbols from section: .rtc.text -Section total: 0 +.noinit - +Section total: 0 0 + +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 *** Running idf_size.py diff with another app (different target)... WARNING: The target of the reference and other MAP files is esp32 and esp32s2, respectively. MAP file: app.map MAP file: app_esp32s2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 9324 bytes 7152 +2172 - DRAM .bss size: 8296 bytes 1936 +6360 -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 9088 +8532 ( -24404 available, -15872 total) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 74439 -35507 (+158387 available, +122880 total) - Flash code: 146944 bytes 74439 +72505 - Flash rodata: 39580 bytes 18580 +21000 -Total image size:~ 234780 bytes (.bin may be padded larger) 174610 +60170 +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) 0 +17620 (+163116 remain, +180736 total) + .data size: 9324 bytes 0 +9324 + .bss size: 8296 bytes 0 +8296 +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) 0 +38932 ( +92140 remain, +131072 total) + .text size: 37908 bytes 0 +37908 + .vectors size: 1024 bytes 0 +1024 +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) 43023 +13529 (+101671 remain, +115200 total) + .data size: 9324 bytes 7152 +2172 + .bss size: 8296 bytes 1936 +6360 + .text size: 37908 bytes 32908 +5000 + .vectors size: 1024 bytes 1027 -3 +Used Flash size : 186524 bytes 93019 +93505 + .text : 146944 bytes 74439 +72505 + .rodata : 39580 bytes 18580 +21000 +Total image size: 283036 bytes (.bin may be padded larger) 134106 +148930 *** -Running idf_size.py diff with another app (wrong target)... -WARNING: The detected chip target is esp32 but command line argument overwrites it to esp32s2! -WARNING: The target of the reference and other MAP files is esp32s2 and esp32, respectively. - MAP file: app.map - MAP file: app2.map -Difference is counted as - , i.e. a positive number means that is larger. -Total sizes of : Difference - DRAM .data size: 0 bytes 0 - DRAM .bss size: 8296 bytes 2024 +6272 -Used static DRAM: 0 bytes ( 0 available, nan% used) 0 ( +0 available, +0 total) -Used static IRAM: 0 bytes ( 0 available, nan% used) 0 ( +0 available, +0 total) - Flash code: 146944 bytes 77191 +69753 - Flash rodata: 39580 bytes 22360 +17220 -Total image size:~ 186524 bytes (.bin may be padded larger) 99551 +86973 +Running idf_size.py for esp32c3... +Total sizes: +Used stat D/IRAM: 48648 bytes ( 279032 remain, 14.8% used) + .data size: 5048 bytes + .bss size: 3664 bytes + .text size: 39936 bytes +Used Flash size : 248080 bytes + .text : 90400 bytes + .rodata : 26352 bytes +Total image size: 293064 bytes (.bin may be padded larger) + +*** +Running idf_size.py for esp32c3 (target autodetected)... +Total sizes: +Used stat D/IRAM: 48648 bytes ( 279032 remain, 14.8% used) + .data size: 5048 bytes + .bss size: 3664 bytes + .text size: 39936 bytes +Used Flash size : 248080 bytes + .text : 90400 bytes + .rodata : 26352 bytes +Total image size: 293064 bytes (.bin may be padded larger) + +*** +Running idf_size.py --archives for esp32c3... +Total sizes: +Used stat D/IRAM: 48648 bytes ( 279032 remain, 14.8% used) + .data size: 5048 bytes + .bss size: 3664 bytes + .text size: 39936 bytes +Used Flash size : 248080 bytes + .text : 90400 bytes + .rodata : 26352 bytes +Total image size: 293064 bytes (.bin may be padded larger) +Per-archive contributions to ELF file: + Archive File DRAM .data .rtc.data DRAM .bss IRAM0 .text ram_st_total Flash .text & .rodata & .appdesc flash_total + ilp32\libc.a 4 0 4 0 8 53504 4098 0 57606 + libesp_hw_support.a 171 16 21 4356 4564 7722 1669 0 13934 + libfreertos.a 16 0 2228 10094 12338 194 3143 0 13447 + libspi_flash.a 1949 0 160 7674 9783 1716 1626 0 12965 + libesp_system.a 185 0 125 1480 1790 6314 3302 0 11281 + libheap.a 1961 0 8 5836 7805 1988 1207 0 10992 + libvfs.a 272 0 48 0 320 6762 378 0 7412 + libesp_common.a 6 0 0 0 6 56 7065 0 7127 + libhal.a 85 0 0 5788 5873 1036 96 0 7005 + libdriver.a 44 0 35 0 79 5280 1055 0 6379 + libnewlib.a 194 0 440 1498 2132 1252 344 0 3288 + libesp_timer.a 16 0 28 544 588 952 277 0 1789 + libefuse.a 96 0 4 0 100 1188 475 0 1759 + libesp_ringbuf.a 0 0 0 1004 1004 0 512 0 1516 + liblog.a 8 0 272 264 544 562 122 0 956 + libriscv.a 0 0 256 652 908 74 137 0 863 + ilp32\libgcc.a 0 0 0 0 0 848 0 0 848 + libapp_update.a 1 0 12 198 211 218 125 256 798 + libmain.a 0 0 0 0 0 248 232 0 480 + libbootloader_support.a 0 0 0 340 340 98 0 0 438 + libpthread.a 0 0 12 0 12 342 0 0 342 + libsoc.a 0 0 0 0 0 0 88 0 88 + libesp_pm.a 0 0 0 0 0 28 0 0 28 + libesp_rom.a 0 0 0 24 24 0 0 0 24 + libcxx.a 0 0 0 0 0 2 0 0 2 + +*** +Running idf_size.py --files for esp32c3... +Total sizes: +Used stat D/IRAM: 48648 bytes ( 279032 remain, 14.8% used) + .data size: 5048 bytes + .bss size: 3664 bytes + .text size: 39936 bytes +Used Flash size : 248080 bytes + .text : 90400 bytes + .rodata : 26352 bytes +Total image size: 293064 bytes (.bin may be padded larger) +Per-file contributions to ELF file: + Object File DRAM .data .rtc.data DRAM .bss IRAM0 .text ram_st_total Flash .text & .rodata & .appdesc flash_total + lib_a-vfprintf.o 0 0 0 0 0 14720 748 0 15468 + lib_a-svfiprintf.o 0 0 0 0 0 9544 1172 0 10716 + lib_a-vfiprintf.o 0 0 0 0 0 9756 737 0 10493 + esp_err_to_name.c.o 6 0 0 0 6 56 7065 0 7127 + tasks.c.o 8 0 664 5552 6224 0 1080 0 6640 + heap_tlsf.c.o 1796 0 0 4036 5832 0 0 0 5832 + lib_a-dtoa.o 0 0 0 0 0 5312 233 0 5545 + vfs_uart.c.o 80 0 8 0 88 4402 270 0 4752 + queue.c.o 0 0 0 3192 3192 0 1495 0 4687 + lib_a-mprec.o 0 0 0 0 0 4252 406 0 4658 + memprot.c.o 0 0 0 772 772 2762 800 0 4334 +spi_flash_chip_generic.c 554 0 0 2684 3238 0 0 0 3238 + uart.c.o 40 0 8 0 48 2588 511 0 3139 + intr_alloc.c.o 0 0 13 688 701 2128 198 0 3014 + panic_arch.c.o 0 0 0 0 0 1060 1693 0 2753 + vfs.c.o 192 0 40 0 232 2360 108 0 2660 + rtc_init.c.o 0 0 0 0 0 2068 500 0 2568 + gpio.c.o 0 0 0 0 0 1856 459 0 2315 + spi_flash_hal_iram.c.o 0 0 0 2220 2220 0 0 0 2220 + task_wdt.c.o 45 0 12 0 57 1438 478 0 1961 + flash_mmap.c.o 0 0 136 1530 1666 182 240 0 1952 + rtc_clk.c.o 171 0 4 1738 1913 0 0 0 1909 + esp_flash_api.c.o 20 0 0 968 988 82 762 0 1832 + heap_caps.c.o 4 0 4 1122 1130 286 355 0 1767 + ringbuf.c.o 0 0 0 1004 1004 0 512 0 1516 + spi_flash_hal_gpspi.c.o 0 0 0 1484 1484 0 0 0 1484 + esp_efuse_utility.c.o 0 0 4 0 4 998 475 0 1473 + locks.c.o 0 0 168 924 1092 152 344 0 1420 + heap_caps_init.c.o 0 0 4 0 4 1052 338 0 1390 + startup.c.o 12 0 8 44 64 834 497 0 1387 + partition.c.o 0 0 8 0 8 1070 268 0 1338 + lib_a-fseeko.o 0 0 0 0 0 1264 0 0 1264 + wdt_hal_iram.c.o 0 0 0 1160 1160 0 0 0 1160 + lib_a-fvwrite.o 0 0 0 0 0 1156 0 0 1156 + lib_a-findfp.o 0 0 0 0 0 1040 96 0 1136 + panic.c.o 12 0 5 6 23 958 131 0 1107 + clk.c.o 0 0 0 0 0 838 212 0 1050 + memspi_host_driver.c.o 397 0 0 636 1033 0 0 0 1033 +spi_flash_chip_winbond.c 203 0 0 748 951 0 0 0 951 + memory_layout_utils.c.o 0 0 0 0 0 650 283 0 933 + periph_ctrl.c.o 0 0 27 0 27 836 85 0 921 + esp_timer.c.o 0 0 8 296 304 514 72 0 882 + lib_a-fflush.o 0 0 0 0 0 856 0 0 856 + trunctfdf2.o 0 0 0 0 0 848 0 0 848 + port.c.o 4 0 1556 588 2148 66 190 0 848 + systimer_hal.c.o 85 0 0 760 845 0 0 0 845 + multi_heap.c.o 157 0 0 678 835 0 0 0 835 + time.c.o 0 0 20 180 200 620 0 0 800 + log.c.o 8 0 264 32 304 562 122 0 724 + cpu_start.c.o 0 0 0 464 464 42 158 0 664 +esp_timer_impl_systimer. 16 0 12 210 238 296 125 0 647 + esp_flash_spi_init.c.o 68 0 4 0 72 272 261 0 601 +spi_flash_os_func_app.c. 52 0 0 414 466 34 95 0 595 + rtc_time.c.o 0 0 0 590 590 0 0 0 590 + port_systick.c.o 0 0 8 370 378 0 192 0 562 + vectors.S.o 0 0 0 522 522 0 0 0 522 + lib_a-refill.o 0 0 0 0 0 512 0 0 512 + lib_a-reent.o 0 0 0 0 0 500 0 0 500 + esp_app_desc.c.o 1 0 8 198 207 32 4 256 491 + lib_a-ftello.o 0 0 0 0 0 488 0 0 488 + hello_world_main.c.o 0 0 0 0 0 248 232 0 480 + lib_a-fclose.o 0 0 0 0 0 456 0 0 456 + spi_flash_hal.c.o 0 0 0 0 0 342 96 0 438 + lib_a-makebuf.o 0 0 0 0 0 436 0 0 436 + port_common.c.o 0 0 0 104 104 128 186 0 418 + lib_a-fopen.o 0 0 0 0 0 416 0 0 416 + sleep_modes.c.o 0 0 0 0 0 244 171 0 415 + crosscore_int.c.o 0 0 4 162 166 106 120 0 388 + lib_a-wsetup.o 0 0 0 0 0 384 0 0 384 + lib_a-locale.o 4 0 0 0 4 0 378 0 382 + lib_a-puts.o 0 0 0 0 0 372 0 0 372 + uart_hal.c.o 0 0 0 0 0 366 0 0 366 + panic_handler.c.o 8 0 4 82 94 266 8 0 364 + esp_time_impl.c.o 0 0 12 0 12 362 0 0 362 + lib_a-fwalk.o 0 0 0 0 0 340 0 0 340 + bootloader_flash.c.o 0 0 0 340 340 0 0 0 340 + freertos_hooks.c.o 0 0 64 48 112 290 0 0 338 + lib_a-stdio.o 0 0 0 0 0 316 0 0 316 + spi_flash_chip_gd.c.o 123 0 0 190 313 0 0 0 313 + rtc_sleep.c.o 0 0 0 308 308 0 0 0 308 + esp_ota_ops.c.o 0 0 4 0 4 186 121 0 307 + system_internal.c.o 0 0 0 298 298 0 0 0 298 + int_wdt.c.o 0 0 8 74 82 206 0 0 280 + interrupt.c.o 0 0 256 130 386 0 137 0 267 + spi_flash_chip_mxic.c.o 190 0 0 76 266 0 0 0 266 + esp_err.c.o 108 0 0 154 262 0 0 0 262 + system_time.c.o 0 0 8 38 46 142 80 0 260 + lib_a-ctype_.o 0 0 0 0 0 0 257 0 257 + cpu_util_esp32c3.c.o 0 0 0 0 0 250 0 0 250 + esp_clk.c.o 0 16 4 30 50 200 0 0 246 +pthread_local_storage.c. 0 0 4 0 4 242 0 0 242 + spi_flash_chip_issi.c.o 125 0 0 112 237 0 0 0 237 + memory_layout.c.o 4 0 0 0 4 0 231 0 235 + log_freertos.c.o 0 0 8 232 240 0 0 0 232 + newlib_init.c.o 156 0 240 0 396 76 0 0 232 + lib_a-printf.o 0 0 0 0 0 224 0 0 224 + regi2c_ctrl.c.o 0 0 0 202 202 0 0 0 202 + heap.c.o 0 0 0 190 190 0 0 0 190 + lib_a-s_frexp.o 0 0 0 0 0 180 8 0 188 + lib_a-assert.o 0 0 0 0 0 124 63 0 187 + cache_utils.c.o 0 0 8 144 152 38 0 0 182 + lib_a-vprintf.o 0 0 0 0 0 176 0 0 176 + spi_flash_chip_boya.c.o 125 0 0 46 171 0 0 0 171 + esp_system.c.o 0 0 20 90 110 80 0 0 170 + lib_a-flags.o 0 0 0 0 0 168 0 0 168 + abort.c.o 38 0 0 128 166 0 0 0 166 + brownout_hal.c.o 0 0 0 0 0 160 0 0 160 + esp_efuse_api.c.o 0 0 0 0 0 158 0 0 158 + portasm.S.o 0 0 0 154 154 0 0 0 154 + lib_a-fiprintf.o 0 0 0 0 0 148 0 0 148 + list.c.o 0 0 0 134 134 0 0 0 134 +spi_flash_encrypt_hal_ir 0 0 0 132 132 0 0 0 132 + cache_err_int.c.o 0 0 0 4 4 124 0 0 128 +spi_flash_os_func_noos.c 36 0 0 86 122 0 0 0 122 + lib_a-mbtowc_r.o 0 0 0 0 0 108 0 0 108 + flash_ops.c.o 24 0 4 40 68 38 0 0 102 + pthread.c.o 0 0 8 0 8 100 0 0 100 + esp_efuse_table.c.o 96 0 0 0 96 0 0 0 96 + uart_hal_iram.c.o 0 0 0 0 0 88 0 0 88 + gpio_periph.c.o 0 0 0 0 0 0 88 0 88 + apb_backup_dma.c.o 0 0 0 52 52 34 0 0 86 +interrupt_controller_hal 0 0 0 0 0 80 0 0 80 + reent_init.c.o 0 0 0 76 76 0 0 0 76 + instruction_decode.c.o 0 0 0 0 0 74 0 0 74 + chip_info.c.o 0 0 0 0 0 70 0 0 70 + lib_a-fseek.o 0 0 0 0 0 68 0 0 68 + lib_a-wctomb_r.o 0 0 0 0 0 64 0 0 64 + flash_qio_mode.c.o 0 0 0 0 0 58 0 0 58 + lib_a-sysgettod.o 0 0 0 0 0 56 0 0 56 + brownout.c.o 0 0 0 0 0 38 5 0 43 + lib_a-localeconv.o 0 0 0 0 0 40 0 0 40 + syscalls.c.o 0 0 0 0 0 36 0 0 36 + esp_efuse_fields.c.o 0 0 0 0 0 32 0 0 32 + cpu_hal.c.o 0 0 0 32 32 0 0 0 32 +spi_flash_chip_drivers.c 32 0 0 0 32 0 0 0 32 + lib_a-errno.o 0 0 0 0 0 28 0 0 28 + cpu_util.c.o 0 0 0 28 28 0 0 0 28 + pm_impl.c.o 0 0 0 0 0 28 0 0 28 +bootloader_flash_config_ 0 0 0 0 0 26 0 0 26 + esp_rom_uart.c.o 0 0 0 24 24 0 0 0 24 + bootloader_mem.c.o 0 0 0 0 0 14 0 0 14 + pthread.c.o 0 0 0 0 0 6 0 0 6 + spi_bus_lock.c.o 4 0 0 0 4 0 0 0 4 + FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 0 4 + cxx_guards.cpp.o 0 0 0 0 0 2 0 0 2 + ubsan.c.o 0 0 0 2 2 0 0 0 2 + lib_a-environ.o 0 0 4 0 4 0 0 0 0 + _divdi3.o 0 0 0 0 0 0 0 0 0 + _moddi3.o 0 0 0 0 0 0 0 0 0 + _udivdi3.o 0 0 0 0 0 0 0 0 0 + _umoddi3.o 0 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py --archive_details for esp32c3... +Total sizes: +Used stat D/IRAM: 48648 bytes ( 279032 remain, 14.8% used) + .data size: 5048 bytes + .bss size: 3664 bytes + .text size: 39936 bytes +Used Flash size : 248080 bytes + .text : 90400 bytes + .rodata : 26352 bytes +Total image size: 293064 bytes (.bin may be padded larger) +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + .p_uart_obj 8 0 +8 + ref_counts 27 0 +27 +Section total: 35 0 +35 + +.dram0.data - + ..g_spi_lock_main_flash_dev 4 0 +4 + .uart_selectlock 8 0 +8 + uart_context 32 0 +32 +Section total: 44 0 +44 + +.flash.appdesc - +Section total: 0 0 + +.flash.rodata - + __FUNCTION__.6207 21 0 +21 + __FUNCTION__.6211 22 0 +22 + __FUNCTION__.6215 23 0 +23 + __FUNCTION__.6219 24 0 +24 + __FUNCTION__.6223 25 0 +25 + __FUNCTION__.6227 24 0 +24 + __FUNCTION__.6231 26 0 +26 + __FUNCTION__.6235 25 0 +25 + __FUNCTION__.6240 25 0 +25 + __FUNCTION__.6246 25 0 +25 + __FUNCTION__.6257 18 0 +18 + __FUNCTION__.6261 19 0 +19 + __FUNCTION__.7153 21 0 +21 + __FUNCTION__.7158 21 0 +21 + __FUNCTION__.7163 19 0 +19 + __FUNCTION__.7168 19 0 +19 + __FUNCTION__.7173 16 0 +16 + __FUNCTION__.7178 16 0 +16 + __FUNCTION__.7183 18 0 +18 + __FUNCTION__.7188 18 0 +18 + __FUNCTION__.7222 22 0 +22 + __FUNCTION__.7394 18 0 +18 + __FUNCTION__.7459 27 0 +27 + __FUNCTION__.7467 39 0 +39 + __FUNCTION__.7471 17 0 +17 + __func__.4238 21 0 +21 + gpio_input_enable.str1.4 62 0 +62 + gpio_set_pull_mode.str1.4 93 0 +93 + gpio_sleep_output_enable.str1.4 27 0 +27 + periph_module_enable.str1.4 64 0 +64 + uart_disable_intr_mask_and_return_pr 54 0 +54 + uart_flush_input.str1.4 45 0 +45 + uart_pattern_pop_pos.str1.4 49 0 +49 + uart_set_stop_bits.str1.4 46 0 +46 + uart_set_word_length.str1.4 46 0 +46 +Section total: 1055 0 +1055 + +.flash.rodata_noload - +Section total: 0 0 + +.flash.text - + gpio_sleep_input_disable 124 0 +124 + gpio_sleep_input_enable 126 0 +126 + gpio_sleep_output_disable 124 0 +124 + gpio_sleep_output_enable 126 0 +126 + gpio_sleep_pulldown_dis 146 0 +146 + gpio_sleep_pulldown_en 148 0 +148 + gpio_sleep_pullup_dis 146 0 +146 + gpio_sleep_pullup_en 148 0 +148 + gpio_sleep_sel_dis 146 0 +146 + gpio_sleep_sel_en 148 0 +148 + gpio_sleep_set_direction 156 0 +156 + gpio_sleep_set_pull_mode 318 0 +318 + periph_ll_get_clk_en_reg 50 0 +50 + periph_ll_get_rst_en_reg 50 0 +50 + periph_module_enable 736 0 +736 + uart_disable_intr_mask_and_return_pr 138 0 +138 + uart_enable_intr_mask 122 0 +122 + uart_flush_input 580 0 +580 + uart_get_baudrate 116 0 +116 + uart_get_bufferedlen 152 0 +152 + uart_get_parity 86 0 +86 + uart_get_selectlock 6 0 +6 + uart_get_stop_bits 86 0 +86 + uart_get_word_length 86 0 +86 + uart_is_driver_installed 34 0 +34 + uart_pattern_queue_update 80 0 +80 + uart_set_baudrate 116 0 +116 + uart_set_parity 116 0 +116 + uart_set_select_notif_callback 30 0 +30 + uart_set_stop_bits 178 0 +178 + uart_set_word_length 178 0 +178 + uart_wait_tx_done 484 0 +484 +Section total: 5280 0 +5280 + +.flash_rodata_dummy - +Section total: 0 0 + +.iram0.bss - +Section total: 0 0 + +.iram0.data - +Section total: 0 0 + +.iram0.text - +Section total: 0 0 + +.iram0.text_end - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 + +*** +Running idf_size.py for esp32s3... +Total sizes: +Used static IRAM: 16383 bytes ( 1 remain, 100.0% used) + .text size: 15356 bytes + .vectors size: 1027 bytes +Used stat D/IRAM: 42176 bytes ( 228160 remain, 15.6% used) + .data size: 9252 bytes + .bss size: 2520 bytes + .text size: 30404 bytes +Used Flash size : 245923 bytes + .text : 87463 bytes + .rodata : 27132 bytes +Total image size: 301962 bytes (.bin may be padded larger) + +*** +Running idf_size.py for esp32s3 (target autodetected)... +Total sizes: +Used static IRAM: 16383 bytes ( 1 remain, 100.0% used) + .text size: 15356 bytes + .vectors size: 1027 bytes +Used stat D/IRAM: 42176 bytes ( 228160 remain, 15.6% used) + .data size: 9252 bytes + .bss size: 2520 bytes + .text size: 30404 bytes +Used Flash size : 245923 bytes + .text : 87463 bytes + .rodata : 27132 bytes +Total image size: 301962 bytes (.bin may be padded larger) + +*** +Running idf_size.py --archives for esp32s3... +Total sizes: +Used static IRAM: 16383 bytes ( 1 remain, 100.0% used) + .text size: 15356 bytes + .vectors size: 1027 bytes +Used stat D/IRAM: 42176 bytes ( 228160 remain, 15.6% used) + .data size: 9252 bytes + .bss size: 2520 bytes + .text size: 30404 bytes +Used Flash size : 245923 bytes + .text : 87463 bytes + .rodata : 27132 bytes +Total image size: 301962 bytes (.bin may be padded larger) +Per-archive contributions to ELF file: + Archive File DRAM .data .rtc.data DRAM .bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata & .appdesc flash_total + no-rtti\libc.a 4 0 4 0 0 8 58528 4685 0 63217 + libfreertos.a 3128 0 748 13747 425 18048 293 3668 0 21261 + libspi_flash.a 1886 0 550 7539 0 9975 1605 2196 0 13226 + libesp_system.a 205 0 206 2914 0 3325 6183 3549 0 12851 + libheap.a 1957 0 8 5195 0 7160 1741 1383 0 10276 + libhal.a 109 0 0 7126 0 7235 1275 608 0 9118 + libesp_hw_support.a 187 16 34 4260 0 4497 3884 288 0 8635 + libesp_common.a 0 0 0 0 0 0 53 7287 0 7340 + libvfs.a 308 0 48 0 0 356 5986 393 0 6687 + libdriver.a 64 0 49 0 0 113 3468 600 0 4132 + libnewlib.a 202 0 440 1280 0 1922 1028 344 0 2854 + libesp_timer.a 32 0 28 515 0 575 917 277 0 1741 + libesp_ringbuf.a 0 0 0 873 0 873 0 512 0 1385 + libxtensa.a 1024 0 0 77 0 1101 126 35 0 1262 + libesp_ipc.a 20 0 72 332 0 424 643 241 0 1236 + liblog.a 8 0 272 247 0 527 499 122 0 876 + libapp_update.a 1 0 12 194 0 207 179 125 256 755 + libbootloader_support.a 0 0 0 444 0 444 95 0 0 539 + libmain.a 0 0 0 0 0 0 228 232 0 460 + libxt_hal.a 0 0 0 405 0 405 0 32 0 437 + libpthread.a 8 0 12 0 0 20 310 0 0 318 + no-rtti\libgcc.a 0 0 0 0 0 0 0 160 0 160 + libesp_rom.a 0 0 0 24 0 24 0 0 0 24 + (exe) 0 0 0 0 3 3 3 12 0 18 + libesp_pm.a 0 0 0 0 0 0 8 0 0 8 + libcxx.a 0 0 0 0 0 0 5 0 0 5 + libmbedcrypto.a 0 0 0 0 0 0 0 0 0 0 + libsoc.a 0 0 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py --files for esp32s3... +Total sizes: +Used static IRAM: 16383 bytes ( 1 remain, 100.0% used) + .text size: 15356 bytes + .vectors size: 1027 bytes +Used stat D/IRAM: 42176 bytes ( 228160 remain, 15.6% used) + .data size: 9252 bytes + .bss size: 2520 bytes + .text size: 30404 bytes +Used Flash size : 245923 bytes + .text : 87463 bytes + .rodata : 27132 bytes +Total image size: 301962 bytes (.bin may be padded larger) +Per-file contributions to ELF file: + Object File DRAM .data .rtc.data DRAM .bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata & .appdesc flash_total + lib_a-vfprintf.o 0 0 0 0 0 0 13707 700 0 14407 + lib_a-svfprintf.o 0 0 0 0 0 0 13331 752 0 14083 + lib_a-svfiprintf.o 0 0 0 0 0 0 9650 1172 0 10822 + lib_a-vfiprintf.o 0 0 0 0 0 0 9827 700 0 10527 + tasks.c.o 8 0 704 6792 0 7504 0 1158 0 7958 + esp_err_to_name.c.o 0 0 0 0 0 0 53 7287 0 7340 + heap_tlsf.c.o 1796 0 0 3591 0 5387 0 0 0 5387 + queue.c.o 0 0 0 3038 0 3038 0 1515 0 4553 + vfs_uart.c.o 116 0 8 0 0 124 4051 282 0 4449 + lib_a-dtoa.o 0 0 0 0 0 0 3592 165 0 3757 + portasm.S.o 3084 0 0 416 0 3500 0 0 0 3500 +spi_flash_chip_generic.c 554 0 0 2529 0 3083 0 0 0 3083 + intr_alloc.c.o 8 0 22 717 0 747 1958 198 0 2881 + lib_a-mprec.o 0 0 0 0 0 0 2340 409 0 2749 + uart.c.o 56 0 12 0 0 68 2091 511 0 2658 + panic_arch.c.o 0 0 0 0 0 0 715 1538 0 2253 + spi_flash_hal_iram.c.o 0 0 0 2250 0 2250 0 0 0 2250 + vfs.c.o 192 0 40 0 0 232 1935 111 0 2238 + rtc_clk.c.o 171 0 8 2059 0 2238 0 0 0 2230 + xtensa_vectors.S.o 32 0 0 1464 425 1921 0 48 0 1969 + task_wdt.c.o 53 0 12 0 0 65 1319 591 0 1963 + spi_flash_hal_gpspi.c.o 0 0 0 1842 0 1842 0 0 0 1842 + rtc_init.c.o 0 0 0 0 0 0 1703 70 0 1773 + esp_flash_api.c.o 20 0 0 862 0 882 89 762 0 1733 + flash_mmap.c.o 0 0 520 1298 0 1818 166 240 0 1704 + port.c.o 0 0 24 945 0 969 147 541 0 1633 + heap_caps.c.o 4 0 4 1003 0 1011 261 355 0 1623 + wdt_hal_iram.c.o 0 0 0 1493 0 1493 0 0 0 1493 + periph_ctrl.c.o 8 0 37 0 0 45 1377 85 0 1470 + cpu_start.c.o 0 0 5 732 0 737 371 334 0 1437 + ringbuf.c.o 0 0 0 873 0 873 0 512 0 1385 + cache_utils.c.o 4 0 14 685 0 703 92 570 0 1351 + heap_caps_init.c.o 0 0 4 0 0 4 905 430 0 1335 + startup.c.o 8 0 11 69 0 88 748 505 0 1330 + locks.c.o 8 0 168 782 0 958 122 344 0 1256 + partition.c.o 0 0 8 0 0 8 938 268 0 1206 + systimer_hal.c.o 85 0 0 1052 0 1137 0 0 0 1137 + xtensa_intr_asm.S.o 1024 0 0 51 0 1075 0 0 0 1075 + panic.c.o 12 0 5 12 0 29 875 147 0 1046 + memspi_host_driver.c.o 397 0 0 637 0 1034 0 0 0 1034 + clk.c.o 0 0 0 0 0 0 802 212 0 1014 + esp_timer.c.o 8 0 8 282 0 298 505 72 0 867 + memory_layout_utils.c.o 0 0 0 0 0 0 575 283 0 858 + debug_helpers.c.o 0 0 0 747 0 747 0 73 0 820 + lib_a-fseeko.o 0 0 0 0 0 0 818 0 0 818 +spi_flash_chip_winbond.c 136 0 0 659 0 795 0 0 0 795 + multi_heap.c.o 157 0 0 601 0 758 0 0 0 758 + esp_ipc.c.o 0 0 56 188 0 244 456 97 0 741 + lib_a-fvwrite.o 0 0 0 0 0 0 721 0 0 721 + panic_handler.c.o 8 0 8 66 0 82 634 8 0 716 + lib_a-findfp.o 0 0 0 0 0 0 612 96 0 708 + rtc_time.c.o 0 0 0 675 0 675 0 0 0 675 + log.c.o 8 0 264 42 0 314 499 122 0 671 + time.c.o 0 0 20 127 0 147 509 0 0 636 +esp_timer_impl_systimer. 24 0 12 198 0 234 286 125 0 633 + port_systick.c.o 0 0 12 394 0 406 0 192 0 586 + esp_flash_spi_init.c.o 68 0 4 0 0 72 243 261 0 572 + lib_a-fflush.o 0 0 0 0 0 0 552 0 0 552 +interrupt_descriptor_tab 0 0 0 0 0 0 12 512 0 524 +spi_flash_os_func_app.c. 52 0 0 324 0 376 44 95 0 515 + crosscore_int.c.o 8 0 8 229 0 245 142 120 0 499 + system_internal.c.o 0 0 0 475 0 475 0 16 0 491 + esp_app_desc.c.o 1 0 8 194 0 203 31 4 256 486 + rtc_sleep.c.o 0 0 0 476 0 476 0 0 0 476 + hello_world_main.c.o 0 0 0 0 0 0 228 232 0 460 + port_common.c.o 0 0 8 98 0 106 146 214 0 458 + spi_flash_hal.c.o 0 0 0 0 0 0 351 96 0 447 + bootloader_flash.c.o 0 0 0 444 0 444 0 0 0 444 + uart_hal.c.o 0 0 0 0 0 0 432 0 0 432 + xtensa_context.S.o 0 0 0 390 0 390 0 0 0 390 + lib_a-locale.o 4 0 0 0 0 4 0 374 0 378 + esp_ipc_isr.c.o 4 0 16 19 0 39 187 144 0 354 + spi_flash_chip_gd.c.o 123 0 0 202 0 325 0 0 0 325 + memory_layout.c.o 0 0 0 0 0 0 0 315 0 315 + lib_a-refill.o 0 0 0 0 0 0 312 0 0 312 + windowspill_asm.o 0 0 0 311 0 311 0 0 0 311 + freertos_hooks.c.o 8 0 128 47 0 183 247 0 0 302 + esp_time_impl.c.o 0 0 12 0 0 12 281 0 0 281 + lib_a-ftello.o 0 0 0 0 0 0 278 0 0 278 + lib_a-fclose.o 0 0 0 0 0 0 270 0 0 270 + esp_ota_ops.c.o 0 0 4 0 0 4 148 121 0 269 + lib_a-makebuf.o 0 0 0 0 0 0 263 0 0 263 + spi_flash_chip_mxic.c.o 190 0 0 70 0 260 0 0 0 260 + soc_hal.c.o 24 0 0 234 0 258 0 0 0 258 + lib_a-ctype_.o 0 0 0 0 0 0 0 257 0 257 + lib_a-reent.o 0 0 0 0 0 0 252 0 0 252 + esp_err.c.o 108 0 0 140 0 248 0 0 0 248 + brownout_hal.c.o 0 0 0 0 0 0 244 0 0 244 + int_wdt.c.o 0 0 9 90 0 99 152 0 0 242 + system_time.c.o 0 0 8 35 0 43 126 80 0 241 + esp_clk.c.o 0 16 4 25 0 45 194 0 0 235 + spi_flash_chip_issi.c.o 125 0 0 108 0 233 0 0 0 233 + newlib_init.c.o 156 0 240 0 0 396 73 0 0 229 + lib_a-wsetup.o 0 0 0 0 0 0 223 0 0 223 +pthread_local_storage.c. 8 0 4 0 0 12 213 0 0 221 + lib_a-snprintf.o 0 0 0 0 0 0 217 0 0 217 + lib_a-fopen.o 0 0 0 0 0 0 216 0 0 216 +spi_flash_encrypt_hal_ir 0 0 0 213 0 213 0 0 0 213 + log_freertos.c.o 0 0 8 205 0 213 0 0 0 205 + abort.c.o 38 0 0 157 0 195 0 0 0 195 + lib_a-puts.o 0 0 0 0 0 0 190 0 0 190 + xtensa_intr.c.o 0 0 0 26 0 26 126 35 0 187 + lib_a-stdio.o 0 0 0 0 0 0 182 0 0 182 + regi2c_ctrl.c.o 8 0 0 171 0 179 0 0 0 179 + spi_flash_chip_boya.c.o 125 0 0 52 0 177 0 0 0 177 + list.c.o 0 0 0 164 0 164 0 0 0 164 + cpu_util.c.o 0 0 0 137 0 137 0 20 0 157 + heap.c.o 0 0 0 151 0 151 0 0 0 151 + highint_hdl.S.o 0 0 0 147 0 147 0 0 0 147 + esp_ipc_isr_handler.S.o 16 0 0 125 0 141 0 0 0 141 + lib_a-assert.o 0 0 0 0 0 0 72 60 0 132 + lib_a-flags.o 0 0 0 0 0 0 128 0 0 128 + esp_system.c.o 0 0 20 56 0 76 70 0 0 126 + lib_a-fwalk.o 0 0 0 0 0 0 119 0 0 119 + lib_a-printf.o 0 0 0 0 0 0 112 0 0 112 +spi_flash_os_func_noos.c 36 0 0 72 0 108 0 0 0 108 + uart_hal_iram.c.o 0 0 0 0 0 0 105 0 0 105 + lib_a-s_frexp.o 0 0 0 0 0 0 100 0 0 100 + flash_ops.c.o 24 0 4 41 0 69 33 0 0 98 + pthread.c.o 0 0 8 0 0 8 97 0 0 97 + lib_a-vprintf.o 0 0 0 0 0 0 94 0 0 94 + cache_err_int.c.o 0 0 0 7 0 7 78 0 0 85 + lib_a-fiprintf.o 0 0 0 0 0 0 84 0 0 84 + mpu_hal.c.o 0 0 0 0 0 0 72 0 0 72 + panic_handler_asm.S.o 0 0 0 66 0 66 0 0 0 66 + lib_a-wctomb_r.o 0 0 0 0 0 0 65 0 0 65 + lib_a-mbtowc_r.o 0 0 0 0 0 0 64 0 0 64 + reent_init.c.o 0 0 0 63 0 63 0 0 0 63 +interrupt_controller_hal 0 0 0 0 0 0 59 0 0 59 + flash_qio_mode.c.o 0 0 0 0 0 0 58 0 0 58 + lib_a-fseek.o 0 0 0 0 0 0 49 0 0 49 +state_asm--restore_extra 0 0 0 47 0 47 0 0 0 47 +state_asm--save_extra_nw 0 0 0 47 0 47 0 0 0 47 + lib_a-localeconv.o 0 0 0 0 0 0 47 0 0 47 +xtensa_vector_defaults.S 0 0 0 46 0 46 0 0 0 46 + cpu_hal.c.o 0 0 0 42 0 42 0 0 0 42 + _divdi3.o 0 0 0 0 0 0 0 40 0 40 + _moddi3.o 0 0 0 0 0 0 0 40 0 40 + _udivdi3.o 0 0 0 0 0 0 0 40 0 40 + _umoddi3.o 0 0 0 0 0 0 0 40 0 40 + brownout.c.o 0 0 0 0 0 0 30 5 0 35 +spi_flash_chip_drivers.c 32 0 0 0 0 32 0 0 0 32 + interrupts--intlevel.o 0 0 0 0 0 0 0 32 0 32 + syscalls.c.o 0 0 0 0 0 0 31 0 0 31 + chip_info.c.o 0 0 0 0 0 0 29 0 0 29 + lib_a-sysgettod.o 0 0 0 0 0 0 28 0 0 28 + debug_helpers_asm.S.o 0 0 0 26 0 26 0 0 0 26 + esp_rom_uart.c.o 0 0 0 24 0 24 0 0 0 24 +bootloader_flash_config_ 0 0 0 0 0 0 22 0 0 22 + bootloader_mem.c.o 0 0 0 0 0 0 15 0 0 15 + lib_a-errno.o 0 0 0 0 0 0 13 0 0 13 + pthread.c.o 0 0 0 0 0 0 12 0 0 12 + crtend.o 0 0 0 0 0 0 0 8 0 8 + pm_impl.c.o 0 0 0 0 0 0 8 0 0 8 + crti.o 0 0 0 0 3 3 3 0 0 6 + cxx_guards.cpp.o 0 0 0 0 0 0 5 0 0 5 + ubsan.c.o 0 0 0 5 0 5 0 0 0 5 + crtbegin.o 0 0 0 0 0 0 0 4 0 4 + spi_bus_lock.c.o 0 0 0 0 0 0 0 4 0 4 + FreeRTOS-openocd.c.o 4 0 0 0 0 4 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_esp32s3. 0 0 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 0 0 +bootloader_common_loader 0 0 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32s3 0 0 0 0 0 0 0 0 0 0 +bootloader_random_esp32s 0 0 0 0 0 0 0 0 0 0 + bootloader_sha.c.o 0 0 0 0 0 0 0 0 0 0 + bootloader_utility.c.o 0 0 0 0 0 0 0 0 0 0 + esp_image_format.c.o 0 0 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 0 0 + gdma.c.o 0 0 0 0 0 0 0 0 0 0 + gpio.c.o 0 0 0 0 0 0 0 0 0 0 + rtc_io.c.o 0 0 0 0 0 0 0 0 0 0 + rtc_module.c.o 0 0 0 0 0 0 0 0 0 0 + spi_common.c.o 0 0 0 0 0 0 0 0 0 0 + dport_access.c.o 0 0 0 0 0 0 0 0 0 0 + esp_crypto_lock.c.o 0 0 0 0 0 0 0 0 0 0 +esp_ipc_isr_routines.S.o 0 0 0 0 0 0 0 0 0 0 + pm_locks.c.o 0 0 0 0 0 0 0 0 0 0 + gdma_hal.c.o 0 0 0 0 0 0 0 0 0 0 + gpio_hal.c.o 0 0 0 0 0 0 0 0 0 0 + rtc_io_hal.c.o 0 0 0 0 0 0 0 0 0 0 + sha_hal.c.o 0 0 0 0 0 0 0 0 0 0 +esp_crypto_shared_gdma.c 0 0 0 0 0 0 0 0 0 0 + esp_sha256.c.o 0 0 0 0 0 0 0 0 0 0 + esp_sha_gdma_impl.c.o 0 0 0 0 0 0 0 0 0 0 + sha.c.o 0 0 0 0 0 0 0 0 0 0 + gdma_periph.c.o 0 0 0 0 0 0 0 0 0 0 + gpio_periph.c.o 0 0 0 0 0 0 0 0 0 0 + rtc_io_periph.c.o 0 0 0 0 0 0 0 0 0 0 + spi_periph.c.o 0 0 0 0 0 0 0 0 0 0 + uart_periph.c.o 0 0 0 0 0 0 0 0 0 0 + int_asm--set_intclear.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-environ.o 0 0 4 0 0 4 0 0 0 0 + lib_a-envlock.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-fputs.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_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-iswspace.o 0 0 0 0 0 0 0 0 0 0 + lib_a-iswspace_l.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-mbrtowc.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-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-sccl.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-strcat.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-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-strstr.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-strtoll.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-strtoull.o 0 0 0 0 0 0 0 0 0 0 + lib_a-svfiscanf.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 + _addsubdf3.o 0 0 0 0 0 0 0 0 0 0 + _bswapdi2.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 + _fixdfsi.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 + +*** +Running idf_size.py --archive_details for esp32s3... +Total sizes: +Used static IRAM: 16383 bytes ( 1 remain, 100.0% used) + .text size: 15356 bytes + .vectors size: 1027 bytes +Used stat D/IRAM: 42176 bytes ( 228160 remain, 15.6% used) + .data size: 9252 bytes + .bss size: 2520 bytes + .text size: 30404 bytes +Used Flash size : 245923 bytes + .text : 87463 bytes + .rodata : 27132 bytes +Total image size: 301962 bytes (.bin may be padded larger) +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + p_uart_obj 12 0 +12 + ref_counts 37 0 +37 +Section total: 49 0 +49 + +.dram0.data - + periph_spinlock 8 0 +8 + uart_context 48 0 +48 + uart_selectlock 8 0 +8 +Section total: 64 0 +64 + +.flash.appdesc - +Section total: 0 0 + +.flash.rodata - + __FUNCTION__$7737 21 0 +21 + __FUNCTION__$7742 21 0 +21 + __FUNCTION__$7747 19 0 +19 + __FUNCTION__$7752 19 0 +19 + __FUNCTION__$7757 16 0 +16 + __FUNCTION__$7762 16 0 +16 + __FUNCTION__$7767 18 0 +18 + __FUNCTION__$7772 18 0 +18 + __FUNCTION__$7806 22 0 +22 + __FUNCTION__$7978 18 0 +18 + __FUNCTION__$8043 27 0 +27 + __FUNCTION__$8051 39 0 +39 + __FUNCTION__$8055 17 0 +17 + __func__$4997 21 0 +21 + g_spi_lock_main_flash_dev 4 0 +4 + periph_module_enable.str1.4 64 0 +64 + uart_disable_intr_mask_and_return_pr 54 0 +54 + uart_flush_input.str1.4 45 0 +45 + uart_pattern_pop_pos.str1.4 49 0 +49 + uart_set_stop_bits.str1.4 46 0 +46 + uart_set_word_length.str1.4 46 0 +46 +Section total: 600 0 +600 + +.flash.rodata_noload - +Section total: 0 0 + +.flash.text - + periph_ll_get_clk_en_reg 121 0 +121 + periph_ll_get_rst_en_reg 125 0 +125 + periph_module_enable 1131 0 +1131 + uart_disable_intr_mask_and_return_pr 122 0 +122 + uart_enable_intr_mask 100 0 +100 + uart_flush_input 509 0 +509 + uart_get_baudrate 88 0 +88 + uart_get_bufferedlen 108 0 +108 + uart_get_parity 68 0 +68 + uart_get_selectlock 12 0 +12 + uart_get_stop_bits 68 0 +68 + uart_get_word_length 64 0 +64 + uart_is_driver_installed 30 0 +30 + uart_pattern_queue_update 74 0 +74 + uart_set_baudrate 84 0 +84 + uart_set_parity 88 0 +88 + uart_set_select_notif_callback 23 0 +23 + uart_set_stop_bits 130 0 +130 + uart_set_word_length 130 0 +130 + uart_wait_tx_done 393 0 +393 +Section total: 3468 0 +3468 + +.flash_rodata_dummy - +Section total: 0 0 + +.iram0.bss - +Section total: 0 0 + +.iram0.data - +Section total: 0 0 + +.iram0.text - +Section total: 0 0 + +.iram0.text_end - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +.rtc.bss - +Section total: 0 0 + +.rtc.data - +Section total: 0 0 + +.rtc.text - +Section total: 0 0 + +.rtc_noinit - +Section total: 0 0 *** Producing JSON output... { "dram_data": 9324, "dram_bss": 8296, + "dram_rodata": 0, "dram_other": 0, "used_dram": 17620, - "available_dram": 163116, + "dram_total": 180736, "used_dram_ratio": 0.09749026203966006, + "dram_remain": 163116, + "iram_vectors": 1024, + "iram_text": 37908, + "iram_other": 0, "used_iram": 38932, - "available_iram": 92140, + "iram_total": 131072, "used_iram_ratio": 0.297027587890625, - "used_diram": 0, - "available_diram": 0, - "used_diram_ratio": 0, + "iram_remain": 92140, + "diram_data": 9324, + "diram_bss": 8296, + "diram_text": 37908, + "diram_vectors": 1024, + "diram_rodata": 0, + "diram_other": 0, + "diram_total": 311808, + "used_diram": 56552, + "used_diram_ratio": 0.18136802134646962, + "diram_remain": 255256, "flash_code": 146944, "flash_rodata": 39580, - "total_size": 234780 + "flash_other": 0, + "used_flash_non_ram": 186524, + "total_size": 283036 } { "liblwip.a": { - "data": 14, - "bss": 3751, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 66978, - "flash_rodata": 13936, - "total": 84679 + ".dram0.data": 14, + ".dram0.bss": 3751, + "ram_st_total": 3765, + ".flash.text": 66978, + ".flash.rodata": 13936, + "flash_total": 80928 }, "libc.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 55583, - "flash_rodata": 3889, - "total": 59472 + "ram_st_total": 0, + ".flash.text": 55583, + ".flash.rodata": 3709, + "flash_total": 59292 }, "libesp32.a": { - "data": 2635, - "bss": 2375, - "other": 0, - "iram": 7758, - "diram": 0, - "flash_text": 4814, - "flash_rodata": 8133, - "total": 25715 + ".dram0.data": 2635, + ".dram0.bss": 2375, + ".iram0.text": 7758, + "ram_st_total": 12768, + ".flash.text": 4814, + ".flash.rodata": 8133, + "flash_total": 23340 }, "libfreertos.a": { - "data": 4156, - "bss": 832, - "other": 0, - "iram": 12853, - "diram": 0, - "flash_text": 0, - "flash_rodata": 1545, - "total": 19386 + ".dram0.data": 4156, + ".dram0.bss": 832, + ".iram0.text": 12428, + ".iram0.vectors": 425, + "ram_st_total": 17841, + ".flash.rodata": 1545, + "flash_total": 18554 }, "libspi_flash.a": { - "data": 36, - "bss": 359, - "other": 0, - "iram": 7004, - "diram": 0, - "flash_text": 886, - "flash_rodata": 1624, - "total": 9909 + ".dram0.data": 36, + ".dram0.bss": 359, + ".iram0.text": 7004, + "ram_st_total": 7399, + ".flash.text": 886, + ".flash.rodata": 1624, + "flash_total": 9550 }, "libsoc.a": { - "data": 660, - "bss": 8, - "other": 0, - "iram": 3887, - "diram": 0, - "flash_text": 0, - "flash_rodata": 3456, - "total": 8011 + ".dram0.data": 660, + ".dram0.bss": 8, + ".iram0.text": 3887, + "ram_st_total": 4555, + ".flash.rodata": 3456, + "flash_total": 8003 }, "libheap.a": { - "data": 1331, - "bss": 4, - "other": 0, - "iram": 4376, - "diram": 0, - "flash_text": 1218, - "flash_rodata": 980, - "total": 7909 + ".dram0.data": 1331, + ".dram0.bss": 4, + ".iram0.text": 4376, + "ram_st_total": 5711, + ".flash.text": 1218, + ".flash.rodata": 980, + "flash_total": 7905 }, "libgcc.a": { - "data": 4, - "bss": 20, - "other": 0, - "iram": 104, - "diram": 0, - "flash_text": 5488, - "flash_rodata": 888, - "total": 6504 + ".dram0.data": 4, + ".dram0.bss": 20, + ".iram0.text": 104, + "ram_st_total": 128, + ".flash.text": 5488, + ".flash.rodata": 888, + "flash_total": 6484 }, "libvfs.a": { - "data": 232, - "bss": 103, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3770, - "flash_rodata": 403, - "total": 4508 + ".dram0.data": 232, + ".dram0.bss": 103, + "ram_st_total": 335, + ".flash.text": 3770, + ".flash.rodata": 403, + "flash_total": 4405 }, "libunity.a": { - "data": 0, - "bss": 121, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2316, - "flash_rodata": 830, - "total": 3267 + ".dram0.bss": 121, + "ram_st_total": 121, + ".flash.text": 2316, + ".flash.rodata": 830, + "flash_total": 3146 }, "libstdc++.a": { - "data": 8, - "bss": 16, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1827, - "flash_rodata": 1062, - "total": 2913 + ".dram0.data": 8, + ".dram0.bss": 16, + "ram_st_total": 24, + ".flash.text": 1827, + ".flash.rodata": 1062, + "flash_total": 2897 }, "libnewlib.a": { - "data": 152, - "bss": 272, - "other": 0, - "iram": 853, - "diram": 0, - "flash_text": 803, - "flash_rodata": 86, - "total": 2166 + ".dram0.data": 152, + ".dram0.bss": 272, + ".iram0.text": 853, + "ram_st_total": 1277, + ".flash.text": 803, + ".flash.rodata": 86, + "flash_total": 1894 }, "libpthread.a": { - "data": 16, - "bss": 12, - "other": 0, - "iram": 174, - "diram": 0, - "flash_text": 774, - "flash_rodata": 638, - "total": 1614 + ".dram0.data": 16, + ".dram0.bss": 12, + ".iram0.text": 174, + "ram_st_total": 202, + ".flash.text": 774, + ".flash.rodata": 638, + "flash_total": 1602 }, "libdriver.a": { - "data": 40, - "bss": 20, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 961, - "flash_rodata": 537, - "total": 1558 + ".dram0.data": 40, + ".dram0.bss": 20, + "ram_st_total": 60, + ".flash.text": 961, + ".flash.rodata": 537, + "flash_total": 1538 }, "liblog.a": { - "data": 8, - "bss": 268, - "other": 0, - "iram": 456, - "diram": 0, - "flash_text": 396, - "flash_rodata": 166, - "total": 1294 + ".dram0.data": 8, + ".dram0.bss": 268, + ".iram0.text": 456, + "ram_st_total": 732, + ".flash.text": 396, + ".flash.rodata": 166, + "flash_total": 1026 }, "libapp_update.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 123, - "flash_rodata": 717, - "total": 840 - }, - "libtcpip_adapter.a": { - "data": 0, - "bss": 81, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 180, - "flash_rodata": 359, - "total": 620 + "ram_st_total": 0, + ".flash.text": 123, + ".flash.rodata": 717, + "flash_total": 840 }, "libhal.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 515, - "diram": 0, - "flash_text": 0, - "flash_rodata": 32, - "total": 547 + ".iram0.text": 515, + "ram_st_total": 515, + ".flash.rodata": 32, + "flash_total": 547 + }, + "libtcpip_adapter.a": { + ".dram0.bss": 81, + "ram_st_total": 81, + ".flash.text": 180, + ".flash.rodata": 359, + "flash_total": 539 }, "libm.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 92, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 92 + ".iram0.text": 92, + "ram_st_total": 92, + "flash_total": 92 }, "libmain.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 53, - "flash_rodata": 10, - "total": 63 + "ram_st_total": 0, + ".flash.text": 53, + ".flash.rodata": 10, + "flash_total": 63 }, "libcxx.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 11, - "flash_rodata": 0, - "total": 11 + "ram_st_total": 0, + ".flash.text": 11, + "flash_total": 11 }, "libxtensa-debug-module.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libbootloader_support.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcore.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libethernet.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedtls.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsmartconfig_ack.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa2.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa_supplicant.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwps.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 } } { "libc.a:lib_a-vfprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 14193, - "flash_rodata": 756, - "total": 14949 + "ram_st_total": 0, + ".flash.text": 14193, + ".flash.rodata": 704, + "flash_total": 14897 }, "libc.a:lib_a-svfprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 13834, - "flash_rodata": 756, - "total": 14590 + "ram_st_total": 0, + ".flash.text": 13834, + ".flash.rodata": 756, + "flash_total": 14590 }, "libc.a:lib_a-svfiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 9642, - "flash_rodata": 1210, - "total": 10852 + "ram_st_total": 0, + ".flash.text": 9642, + ".flash.rodata": 1176, + "flash_total": 10818 }, "libc.a:lib_a-vfiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 9933, - "flash_rodata": 738, - "total": 10671 - }, - "liblwip.a:nd6.o": { - "data": 8, - "bss": 1027, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 8427, - "flash_rodata": 136, - "total": 9598 + "ram_st_total": 0, + ".flash.text": 9933, + ".flash.rodata": 704, + "flash_total": 10637 }, "liblwip.a:tcp_in.o": { - "data": 0, - "bss": 54, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 8127, - "flash_rodata": 916, - "total": 9097 + ".dram0.bss": 54, + "ram_st_total": 54, + ".flash.text": 8127, + ".flash.rodata": 916, + "flash_total": 9043 + }, + "liblwip.a:nd6.o": { + ".dram0.data": 8, + ".dram0.bss": 1027, + "ram_st_total": 1035, + ".flash.text": 8427, + ".flash.rodata": 136, + "flash_total": 8571 }, "libfreertos.a:tasks.o": { - "data": 20, - "bss": 700, - "other": 0, - "iram": 5667, - "diram": 0, - "flash_text": 0, - "flash_rodata": 503, - "total": 6890 + ".dram0.data": 20, + ".dram0.bss": 700, + ".iram0.text": 5667, + "ram_st_total": 6387, + ".flash.rodata": 503, + "flash_total": 6190 }, "liblwip.a:tcp_out.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 5060, - "flash_rodata": 1124, - "total": 6184 - }, - "liblwip.a:sockets.o": { - "data": 0, - "bss": 728, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 4627, - "flash_rodata": 824, - "total": 6179 + "ram_st_total": 0, + ".flash.text": 5060, + ".flash.rodata": 1124, + "flash_total": 6184 }, "liblwip.a:tcp.o": { - "data": 4, - "bss": 23, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 4290, - "flash_rodata": 1384, - "total": 5701 + ".dram0.data": 4, + ".dram0.bss": 23, + "ram_st_total": 27, + ".flash.text": 4290, + ".flash.rodata": 1384, + "flash_total": 5678 + }, + "liblwip.a:sockets.o": { + ".dram0.bss": 728, + "ram_st_total": 728, + ".flash.text": 4627, + ".flash.rodata": 824, + "flash_total": 5451 }, "liblwip.a:api_msg.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3763, - "flash_rodata": 1366, - "total": 5129 + "ram_st_total": 0, + ".flash.text": 3763, + ".flash.rodata": 1366, + "flash_total": 5129 }, "liblwip.a:dhcp.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3456, - "flash_rodata": 1401, - "total": 4865 + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 3456, + ".flash.rodata": 1401, + "flash_total": 4857 }, "libesp32.a:panic.o": { - "data": 2579, - "bss": 5, - "other": 0, - "iram": 2145, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4729 + ".dram0.data": 2579, + ".dram0.bss": 5, + ".iram0.text": 2145, + "ram_st_total": 4729, + "flash_total": 4724 }, "libesp32.a:esp_err_to_name.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 50, - "flash_rodata": 4091, - "total": 4141 + "ram_st_total": 0, + ".flash.text": 50, + ".flash.rodata": 4091, + "flash_total": 4141 }, "libgcc.a:unwind-dw2-fde.o": { - "data": 4, - "bss": 20, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3316, - "flash_rodata": 404, - "total": 3744 + ".dram0.data": 4, + ".dram0.bss": 20, + "ram_st_total": 24, + ".flash.text": 3316, + ".flash.rodata": 404, + "flash_total": 3724 }, "liblwip.a:pbuf.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2453, - "flash_rodata": 1161, - "total": 3615 + ".dram0.bss": 1, + "ram_st_total": 1, + ".flash.text": 2453, + ".flash.rodata": 1161, + "flash_total": 3614 }, "libfreertos.a:portasm.o": { - "data": 3084, - "bss": 0, - "other": 0, - "iram": 480, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 3564 + ".dram0.data": 3084, + ".iram0.text": 480, + "ram_st_total": 3564, + "flash_total": 3564 }, "libc.a:lib_a-dtoa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3522, - "flash_rodata": 13, - "total": 3535 - }, - "liblwip.a:etharp.o": { - "data": 0, - "bss": 241, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2618, - "flash_rodata": 658, - "total": 3517 + "ram_st_total": 0, + ".flash.text": 3522, + ".flash.rodata": 13, + "flash_total": 3535 }, "liblwip.a:ip6.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3212, - "flash_rodata": 124, - "total": 3336 - }, - "liblwip.a:dns.o": { - "data": 0, - "bss": 1292, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1809, - "flash_rodata": 206, - "total": 3307 + "ram_st_total": 0, + ".flash.text": 3212, + ".flash.rodata": 124, + "flash_total": 3336 }, "libspi_flash.a:spi_flash_rom_patch.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 2518, - "diram": 0, - "flash_text": 0, - "flash_rodata": 766, - "total": 3284 + ".iram0.text": 2518, + "ram_st_total": 2518, + ".flash.rodata": 766, + "flash_total": 3284 + }, + "liblwip.a:etharp.o": { + ".dram0.bss": 241, + "ram_st_total": 241, + ".flash.text": 2618, + ".flash.rodata": 658, + "flash_total": 3276 }, "liblwip.a:udp.o": { - "data": 2, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3020, - "flash_rodata": 216, - "total": 3242 + ".dram0.data": 2, + ".dram0.bss": 4, + "ram_st_total": 6, + ".flash.text": 3020, + ".flash.rodata": 216, + "flash_total": 3238 }, "libesp32.a:intr_alloc.o": { - "data": 8, - "bss": 22, - "other": 0, - "iram": 726, - "diram": 0, - "flash_text": 1749, - "flash_rodata": 710, - "total": 3215 + ".dram0.data": 8, + ".dram0.bss": 22, + ".iram0.text": 726, + "ram_st_total": 756, + ".flash.text": 1749, + ".flash.rodata": 710, + "flash_total": 3193 }, "libheap.a:multi_heap.o": { - "data": 857, - "bss": 0, - "other": 0, - "iram": 2217, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 3074 + ".dram0.data": 857, + ".iram0.text": 2217, + "ram_st_total": 3074, + "flash_total": 3074 }, "libfreertos.a:queue.o": { - "data": 8, - "bss": 56, - "other": 0, - "iram": 2569, - "diram": 0, - "flash_text": 0, - "flash_rodata": 369, - "total": 3002 - }, - "libspi_flash.a:flash_ops.o": { - "data": 32, - "bss": 41, - "other": 0, - "iram": 2352, - "diram": 0, - "flash_text": 99, - "flash_rodata": 0, - "total": 2524 + ".dram0.data": 8, + ".dram0.bss": 56, + ".iram0.text": 2569, + "ram_st_total": 2633, + ".flash.rodata": 369, + "flash_total": 2946 }, "libgcc.a:unwind-dw2-xtensa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2172, - "flash_rodata": 324, - "total": 2496 + "ram_st_total": 0, + ".flash.text": 2172, + ".flash.rodata": 324, + "flash_total": 2496 + }, + "libspi_flash.a:flash_ops.o": { + ".dram0.data": 32, + ".dram0.bss": 41, + ".iram0.text": 2352, + "ram_st_total": 2425, + ".flash.text": 99, + "flash_total": 2483 }, "libsoc.a:rtc_clk.o": { - "data": 660, - "bss": 8, - "other": 0, - "iram": 1794, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 2462 + ".dram0.data": 660, + ".dram0.bss": 8, + ".iram0.text": 1794, + "ram_st_total": 2462, + "flash_total": 2454 }, "libc.a:lib_a-mprec.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2134, - "flash_rodata": 296, - "total": 2430 - }, - "libvfs.a:vfs.o": { - "data": 192, - "bss": 40, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1995, - "flash_rodata": 132, - "total": 2359 + "ram_st_total": 0, + ".flash.text": 2134, + ".flash.rodata": 296, + "flash_total": 2430 }, "liblwip.a:ip6_frag.o": { - "data": 0, - "bss": 6, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1905, - "flash_rodata": 442, - "total": 2353 + ".dram0.bss": 6, + "ram_st_total": 6, + ".flash.text": 1905, + ".flash.rodata": 442, + "flash_total": 2347 }, "liblwip.a:api_lib.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1425, - "flash_rodata": 919, - "total": 2344 + "ram_st_total": 0, + ".flash.text": 1425, + ".flash.rodata": 919, + "flash_total": 2344 + }, + "libvfs.a:vfs.o": { + ".dram0.data": 192, + ".dram0.bss": 40, + "ram_st_total": 232, + ".flash.text": 1995, + ".flash.rodata": 132, + "flash_total": 2319 }, "liblwip.a:igmp.o": { - "data": 0, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1604, - "flash_rodata": 707, - "total": 2323 - }, - "libesp32.a:dbg_stubs.o": { - "data": 0, - "bss": 2072, - "other": 0, - "iram": 32, - "diram": 0, - "flash_text": 100, - "flash_rodata": 0, - "total": 2204 - }, - "libvfs.a:vfs_uart.o": { - "data": 40, - "bss": 63, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1775, - "flash_rodata": 271, - "total": 2149 + ".dram0.bss": 12, + "ram_st_total": 12, + ".flash.text": 1604, + ".flash.rodata": 707, + "flash_total": 2311 }, "libunity.a:unity_platform.o": { - "data": 0, - "bss": 13, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1511, - "flash_rodata": 600, - "total": 2124 + ".dram0.bss": 13, + "ram_st_total": 13, + ".flash.text": 1511, + ".flash.rodata": 600, + "flash_total": 2111 + }, + "libvfs.a:vfs_uart.o": { + ".dram0.data": 40, + ".dram0.bss": 63, + "ram_st_total": 103, + ".flash.text": 1775, + ".flash.rodata": 271, + "flash_total": 2086 }, "libesp32.a:esp_timer_esp32.o": { - "data": 8, - "bss": 26, - "other": 0, - "iram": 1295, - "diram": 0, - "flash_text": 254, - "flash_rodata": 526, - "total": 2109 + ".dram0.data": 8, + ".dram0.bss": 26, + ".iram0.text": 1295, + "ram_st_total": 1329, + ".flash.text": 254, + ".flash.rodata": 526, + "flash_total": 2083 }, "libsoc.a:rtc_periph.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 2080, - "total": 2080 + "ram_st_total": 0, + ".flash.rodata": 2080, + "flash_total": 2080 }, - "libspi_flash.a:flash_mmap.o": { - "data": 0, - "bss": 296, - "other": 0, - "iram": 1298, - "diram": 0, - "flash_text": 124, - "flash_rodata": 327, - "total": 2045 + "liblwip.a:dns.o": { + ".dram0.bss": 1292, + "ram_st_total": 1292, + ".flash.text": 1809, + ".flash.rodata": 206, + "flash_total": 2015 }, "libheap.a:heap_caps.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 1195, - "diram": 0, - "flash_text": 188, - "flash_rodata": 593, - "total": 1980 + ".dram0.data": 4, + ".iram0.text": 1195, + "ram_st_total": 1199, + ".flash.text": 188, + ".flash.rodata": 593, + "flash_total": 1980 }, "libstdc++.a:eh_personality.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1561, - "flash_rodata": 384, - "total": 1945 + "ram_st_total": 0, + ".flash.text": 1561, + ".flash.rodata": 384, + "flash_total": 1945 }, "liblwip.a:ip4.o": { - "data": 0, - "bss": 6, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1664, - "flash_rodata": 139, - "total": 1809 + ".dram0.bss": 6, + "ram_st_total": 6, + ".flash.text": 1664, + ".flash.rodata": 139, + "flash_total": 1803 }, - "liblwip.a:netif.o": { - "data": 0, - "bss": 241, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1239, - "flash_rodata": 287, - "total": 1767 + "libspi_flash.a:flash_mmap.o": { + ".dram0.bss": 296, + ".iram0.text": 1298, + "ram_st_total": 1594, + ".flash.text": 124, + ".flash.rodata": 327, + "flash_total": 1749 }, "libfreertos.a:xtensa_vectors.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 1697, - "diram": 0, - "flash_text": 0, - "flash_rodata": 36, - "total": 1741 + ".dram0.data": 8, + ".iram0.text": 1272, + ".iram0.vectors": 425, + "ram_st_total": 1705, + ".flash.rodata": 36, + "flash_total": 1741 }, "libesp32.a:cpu_start.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 806, - "diram": 0, - "flash_text": 277, - "flash_rodata": 486, - "total": 1570 + ".dram0.bss": 1, + ".iram0.text": 806, + "ram_st_total": 807, + ".flash.text": 277, + ".flash.rodata": 486, + "flash_total": 1569 }, "libesp32.a:clk.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 67, - "diram": 0, - "flash_text": 581, - "flash_rodata": 893, - "total": 1541 + ".iram0.text": 67, + "ram_st_total": 67, + ".flash.text": 581, + ".flash.rodata": 893, + "flash_total": 1541 }, - "libfreertos.a:timers.o": { - "data": 8, - "bss": 56, - "other": 0, - "iram": 1149, - "diram": 0, - "flash_text": 0, - "flash_rodata": 233, - "total": 1446 + "liblwip.a:netif.o": { + ".dram0.bss": 241, + "ram_st_total": 241, + ".flash.text": 1239, + ".flash.rodata": 287, + "flash_total": 1526 }, "liblwip.a:sys_arch.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1216, - "flash_rodata": 222, - "total": 1446 + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 1216, + ".flash.rodata": 222, + "flash_total": 1438 }, "libheap.a:multi_heap_poisoning.o": { - "data": 470, - "bss": 0, - "other": 0, - "iram": 964, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1434 + ".dram0.data": 470, + ".iram0.text": 964, + "ram_st_total": 1434, + "flash_total": 1434 }, "libheap.a:heap_caps_init.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1030, - "flash_rodata": 387, - "total": 1421 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 1030, + ".flash.rodata": 387, + "flash_total": 1417 + }, + "libfreertos.a:timers.o": { + ".dram0.data": 8, + ".dram0.bss": 56, + ".iram0.text": 1149, + "ram_st_total": 1213, + ".flash.rodata": 233, + "flash_total": 1390 }, "liblwip.a:mld6.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1334, - "flash_rodata": 0, - "total": 1338 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 1334, + "flash_total": 1334 }, "libspi_flash.a:cache_utils.o": { - "data": 4, - "bss": 14, - "other": 0, - "iram": 836, - "diram": 0, - "flash_text": 81, - "flash_rodata": 390, - "total": 1325 + ".dram0.data": 4, + ".dram0.bss": 14, + ".iram0.text": 836, + "ram_st_total": 854, + ".flash.text": 81, + ".flash.rodata": 390, + "flash_total": 1311 }, "liblwip.a:raw.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1087, - "flash_rodata": 223, - "total": 1314 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 1087, + ".flash.rodata": 223, + "flash_total": 1310 }, "libesp32.a:esp_timer.o": { - "data": 8, - "bss": 20, - "other": 0, - "iram": 702, - "diram": 0, - "flash_text": 429, - "flash_rodata": 142, - "total": 1301 - }, - "liblog.a:log.o": { - "data": 8, - "bss": 268, - "other": 0, - "iram": 456, - "diram": 0, - "flash_text": 396, - "flash_rodata": 166, - "total": 1294 + ".dram0.data": 8, + ".dram0.bss": 20, + ".iram0.text": 702, + "ram_st_total": 730, + ".flash.text": 429, + ".flash.rodata": 142, + "flash_total": 1281 }, "libesp32.a:system_api.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 589, - "diram": 0, - "flash_text": 0, - "flash_rodata": 662, - "total": 1259 + ".dram0.bss": 8, + ".iram0.text": 589, + "ram_st_total": 597, + ".flash.rodata": 662, + "flash_total": 1251 }, "libsoc.a:soc_memory_layout.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 1239, - "total": 1239 + "ram_st_total": 0, + ".flash.rodata": 1239, + "flash_total": 1239 }, "liblwip.a:icmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 769, - "flash_rodata": 371, - "total": 1140 + "ram_st_total": 0, + ".flash.text": 769, + ".flash.rodata": 371, + "flash_total": 1140 }, "libfreertos.a:xtensa_intr_asm.o": { - "data": 1024, - "bss": 0, - "other": 0, - "iram": 51, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1075 + ".dram0.data": 1024, + ".iram0.text": 51, + "ram_st_total": 1075, + "flash_total": 1075 }, - "libfreertos.a:port.o": { - "data": 0, - "bss": 16, - "other": 0, - "iram": 617, - "diram": 0, - "flash_text": 0, - "flash_rodata": 369, - "total": 1002 + "liblog.a:log.o": { + ".dram0.data": 8, + ".dram0.bss": 268, + ".iram0.text": 456, + "ram_st_total": 732, + ".flash.text": 396, + ".flash.rodata": 166, + "flash_total": 1026 }, "libpthread.a:pthread.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 174, - "diram": 0, - "flash_text": 298, - "flash_rodata": 512, - "total": 1000 + ".dram0.data": 8, + ".dram0.bss": 8, + ".iram0.text": 174, + "ram_st_total": 190, + ".flash.text": 298, + ".flash.rodata": 512, + "flash_total": 992 }, "liblwip.a:icmp6.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 863, - "flash_rodata": 127, - "total": 990 + "ram_st_total": 0, + ".flash.text": 863, + ".flash.rodata": 127, + "flash_total": 990 + }, + "libfreertos.a:port.o": { + ".dram0.bss": 16, + ".iram0.text": 617, + "ram_st_total": 633, + ".flash.rodata": 369, + "flash_total": 986 }, "libsoc.a:rtc_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 980, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 980 - }, - "libunity.a:unity.o": { - "data": 0, - "bss": 108, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 767, - "flash_rodata": 90, - "total": 965 + ".iram0.text": 980, + "ram_st_total": 980, + "flash_total": 980 }, "libsoc.a:rtc_time.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 803, - "diram": 0, - "flash_text": 0, - "flash_rodata": 137, - "total": 940 + ".iram0.text": 803, + "ram_st_total": 803, + ".flash.rodata": 137, + "flash_total": 940 }, "libesp32.a:dport_access.o": { - "data": 8, - "bss": 40, - "other": 0, - "iram": 539, - "diram": 0, - "flash_text": 189, - "flash_rodata": 129, - "total": 905 + ".dram0.data": 8, + ".dram0.bss": 40, + ".iram0.text": 539, + "ram_st_total": 587, + ".flash.text": 189, + ".flash.rodata": 129, + "flash_total": 865 }, "libc.a:lib_a-fseeko.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 862, - "flash_rodata": 0, - "total": 862 + "ram_st_total": 0, + ".flash.text": 862, + "flash_total": 862 }, - "libnewlib.a:time.o": { - "data": 0, - "bss": 32, - "other": 0, - "iram": 139, - "diram": 0, - "flash_text": 691, - "flash_rodata": 0, - "total": 862 - }, - "liblwip.a:tcpip.o": { - "data": 0, - "bss": 16, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 644, - "flash_rodata": 191, - "total": 851 + "libunity.a:unity.o": { + ".dram0.bss": 108, + "ram_st_total": 108, + ".flash.text": 767, + ".flash.rodata": 90, + "flash_total": 857 }, "libapp_update.a:esp_ota_ops.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 123, - "flash_rodata": 717, - "total": 840 + "ram_st_total": 0, + ".flash.text": 123, + ".flash.rodata": 717, + "flash_total": 840 + }, + "liblwip.a:tcpip.o": { + ".dram0.bss": 16, + "ram_st_total": 16, + ".flash.text": 644, + ".flash.rodata": 191, + "flash_total": 835 + }, + "libnewlib.a:time.o": { + ".dram0.bss": 32, + ".iram0.text": 139, + "ram_st_total": 171, + ".flash.text": 691, + "flash_total": 830 }, "libdriver.a:periph_ctrl.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 520, - "flash_rodata": 256, - "total": 784 + ".dram0.data": 8, + "ram_st_total": 8, + ".flash.text": 520, + ".flash.rodata": 256, + "flash_total": 784 }, "liblwip.a:timers.o": { - "data": 0, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 638, - "flash_rodata": 131, - "total": 781 + ".dram0.bss": 12, + "ram_st_total": 12, + ".flash.text": 638, + ".flash.rodata": 131, + "flash_total": 769 }, "libspi_flash.a:partition.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 582, - "flash_rodata": 141, - "total": 731 + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 582, + ".flash.rodata": 141, + "flash_total": 723 }, "libnewlib.a:locks.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 552, - "diram": 0, - "flash_text": 0, - "flash_rodata": 84, - "total": 644 - }, - "libesp32.a:ipc.o": { - "data": 0, - "bss": 36, - "other": 0, - "iram": 159, - "diram": 0, - "flash_text": 329, - "flash_rodata": 104, - "total": 628 - }, - "libtcpip_adapter.a:tcpip_adapter_lwip.o": { - "data": 0, - "bss": 81, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 180, - "flash_rodata": 359, - "total": 620 + ".dram0.data": 8, + ".iram0.text": 552, + "ram_st_total": 560, + ".flash.rodata": 84, + "flash_total": 644 }, "libpthread.a:pthread_local_storage.o": { - "data": 8, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 476, - "flash_rodata": 126, - "total": 614 + ".dram0.data": 8, + ".dram0.bss": 4, + "ram_st_total": 12, + ".flash.text": 476, + ".flash.rodata": 126, + "flash_total": 610 + }, + "libesp32.a:ipc.o": { + ".dram0.bss": 36, + ".iram0.text": 159, + "ram_st_total": 195, + ".flash.text": 329, + ".flash.rodata": 104, + "flash_total": 592 }, "liblwip.a:inet_chksum.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 580, - "flash_rodata": 0, - "total": 580 + "ram_st_total": 0, + ".flash.text": 580, + "flash_total": 580 + }, + "libtcpip_adapter.a:tcpip_adapter_lwip.o": { + ".dram0.bss": 81, + "ram_st_total": 81, + ".flash.text": 180, + ".flash.rodata": 359, + "flash_total": 539 }, "libesp32.a:crosscore_int.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 204, - "diram": 0, - "flash_text": 126, - "flash_rodata": 148, - "total": 494 + ".dram0.data": 8, + ".dram0.bss": 8, + ".iram0.text": 204, + "ram_st_total": 220, + ".flash.text": 126, + ".flash.rodata": 148, + "flash_total": 486 }, "liblwip.a:netbuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 154, - "flash_rodata": 326, - "total": 480 + "ram_st_total": 0, + ".flash.text": 154, + ".flash.rodata": 326, + "flash_total": 480 }, "liblwip.a:vfs_lwip.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 307, - "flash_rodata": 155, - "total": 462 - }, - "libnewlib.a:syscall_table.o": { - "data": 144, - "bss": 240, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 67, - "flash_rodata": 0, - "total": 451 + "ram_st_total": 0, + ".flash.text": 307, + ".flash.rodata": 155, + "flash_total": 462 }, "libdriver.a:timer.o": { - "data": 16, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 112, - "flash_rodata": 281, - "total": 409 + ".dram0.data": 16, + "ram_st_total": 16, + ".flash.text": 112, + ".flash.rodata": 281, + "flash_total": 409 }, "libesp32.a:int_wdt.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 87, - "diram": 0, - "flash_text": 301, - "flash_rodata": 0, - "total": 389 + ".dram0.bss": 1, + ".iram0.text": 87, + "ram_st_total": 88, + ".flash.text": 301, + "flash_total": 388 }, "libstdc++.a:eh_globals.o": { - "data": 0, - "bss": 16, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 149, - "flash_rodata": 193, - "total": 358 + ".dram0.bss": 16, + "ram_st_total": 16, + ".flash.text": 149, + ".flash.rodata": 193, + "flash_total": 342 }, "libesp32.a:brownout.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 145, - "flash_rodata": 191, - "total": 336 - }, - "libesp32.a:freertos_hooks.o": { - "data": 8, - "bss": 128, - "other": 0, - "iram": 43, - "diram": 0, - "flash_text": 137, - "flash_rodata": 0, - "total": 316 + "ram_st_total": 0, + ".flash.text": 145, + ".flash.rodata": 191, + "flash_total": 336 }, "libhal.a:windowspill_asm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 311, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 311 + ".iram0.text": 311, + "ram_st_total": 311, + "flash_total": 311 }, "libsoc.a:cpu_util.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 310, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 310 + ".iram0.text": 310, + "ram_st_total": 310, + "flash_total": 310 }, "libdriver.a:rtc_module.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 291, - "flash_rodata": 0, - "total": 307 + ".dram0.data": 8, + ".dram0.bss": 8, + "ram_st_total": 16, + ".flash.text": 291, + "flash_total": 299 }, "libfreertos.a:xtensa_context.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 299, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 299 + ".iram0.text": 299, + "ram_st_total": 299, + "flash_total": 299 }, "libstdc++.a:eh_terminate.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 117, - "flash_rodata": 141, - "total": 258 + "ram_st_total": 0, + ".flash.text": 117, + ".flash.rodata": 141, + "flash_total": 258 }, "liblwip.a:ethernet.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 244, - "flash_rodata": 12, - "total": 256 - }, - "libc.a:lib_a-puts.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 182, - "flash_rodata": 60, - "total": 242 + "ram_st_total": 0, + ".flash.text": 244, + ".flash.rodata": 12, + "flash_total": 256 }, "libesp32.a:dport_panic_highint_hdl.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 234, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 242 + ".dram0.data": 8, + ".iram0.text": 234, + "ram_st_total": 242, + "flash_total": 242 }, "libc.a:lib_a-reent.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 232, - "flash_rodata": 0, - "total": 232 + "ram_st_total": 0, + ".flash.text": 232, + "flash_total": 232 }, "libc.a:lib_a-fopen.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 228, - "flash_rodata": 0, - "total": 228 + "ram_st_total": 0, + ".flash.text": 228, + "flash_total": 228 + }, + "libnewlib.a:syscall_table.o": { + ".dram0.data": 144, + ".dram0.bss": 240, + "ram_st_total": 384, + ".flash.text": 67, + "flash_total": 211 }, "liblwip.a:dhcpserver.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 203, - "flash_rodata": 0, - "total": 207 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 203, + "flash_total": 203 + }, + "libesp32.a:freertos_hooks.o": { + ".dram0.data": 8, + ".dram0.bss": 128, + ".iram0.text": 43, + "ram_st_total": 179, + ".flash.text": 137, + "flash_total": 188 + }, + "libc.a:lib_a-puts.o": { + "ram_st_total": 0, + ".flash.text": 182, + ".flash.rodata": 0, + "flash_total": 182 }, "libunity.a:test_utils.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 38, - "flash_rodata": 140, - "total": 178 + "ram_st_total": 0, + ".flash.text": 38, + ".flash.rodata": 140, + "flash_total": 178 }, "libc.a:lib_a-sprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 167, - "flash_rodata": 0, - "total": 167 + "ram_st_total": 0, + ".flash.text": 167, + "flash_total": 167 }, "libesp32.a:cache_err_int.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 56, - "diram": 0, - "flash_text": 98, - "flash_rodata": 0, - "total": 154 + ".iram0.text": 56, + "ram_st_total": 56, + ".flash.text": 98, + "flash_total": 154 }, "libfreertos.a:list.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 142, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 142 + ".iram0.text": 142, + "ram_st_total": 142, + "flash_total": 142 }, "libfreertos.a:xtensa_intr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 104, - "diram": 0, - "flash_text": 0, - "flash_rodata": 35, - "total": 139 + ".iram0.text": 104, + "ram_st_total": 104, + ".flash.rodata": 35, + "flash_total": 139 }, "libnewlib.a:syscalls.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 94, - "diram": 0, - "flash_text": 45, - "flash_rodata": 0, - "total": 139 + ".iram0.text": 94, + "ram_st_total": 94, + ".flash.text": 45, + "flash_total": 139 }, "libstdc++.a:si_class_type_info.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 136, - "total": 136 + "ram_st_total": 0, + ".flash.rodata": 136, + "flash_total": 136 + }, + "libesp32.a:dbg_stubs.o": { + ".dram0.bss": 2072, + ".iram0.text": 32, + "ram_st_total": 2104, + ".flash.text": 100, + "flash_total": 132 }, "libc.a:lib_a-assert.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 68, - "flash_rodata": 60, - "total": 128 + "ram_st_total": 0, + ".flash.text": 68, + ".flash.rodata": 60, + "flash_total": 128 }, "libc.a:lib_a-flags.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 127, - "flash_rodata": 0, - "total": 127 + "ram_st_total": 0, + ".flash.text": 127, + "flash_total": 127 }, "libc.a:lib_a-printf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 116, - "flash_rodata": 0, - "total": 116 + "ram_st_total": 0, + ".flash.text": 116, + "flash_total": 116 }, "liblwip.a:ip4_addr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 72, - "flash_rodata": 40, - "total": 112 + "ram_st_total": 0, + ".flash.text": 72, + ".flash.rodata": 40, + "flash_total": 112 }, "libstdc++.a:class_type_info.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 112, - "total": 112 + "ram_st_total": 0, + ".flash.rodata": 112, + "flash_total": 112 }, "libc.a:lib_a-s_frexp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 110, - "flash_rodata": 0, - "total": 110 - }, - "liblwip.a:ip.o": { - "data": 0, - "bss": 60, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 50, - "flash_rodata": 0, - "total": 110 + "ram_st_total": 0, + ".flash.text": 110, + "flash_total": 110 }, "liblwip.a:memp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 108, - "total": 108 + "ram_st_total": 0, + ".flash.rodata": 108, + "flash_total": 108 }, "libgcc.a:lib2funcs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 104, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 104 + ".iram0.text": 104, + "ram_st_total": 104, + "flash_total": 104 }, "libc.a:lib_a-vprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 94, - "flash_rodata": 0, - "total": 94 + "ram_st_total": 0, + ".flash.text": 94, + "flash_total": 94 }, "libm.a:lib_a-s_fpclassify.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 92, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 92 + ".iram0.text": 92, + "ram_st_total": 92, + "flash_total": 92 }, "liblwip.a:def.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 91, - "flash_rodata": 0, - "total": 91 + "ram_st_total": 0, + ".flash.text": 91, + "flash_total": 91 }, "libc.a:lib_a-fiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 84, - "flash_rodata": 0, - "total": 84 + "ram_st_total": 0, + ".flash.text": 84, + "flash_total": 84 }, "libesp32.a:hw_random.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 74, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 78 + ".dram0.bss": 4, + ".iram0.text": 74, + "ram_st_total": 78, + "flash_total": 74 }, "libesp32.a:stack_check.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 32, - "flash_rodata": 42, - "total": 78 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 32, + ".flash.rodata": 42, + "flash_total": 74 }, "libhal.a:clock.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 72, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 72 + ".iram0.text": 72, + "ram_st_total": 72, + "flash_total": 72 }, "libnewlib.a:reent_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 68, - "diram": 0, - "flash_text": 0, - "flash_rodata": 2, - "total": 70 + ".iram0.text": 68, + "ram_st_total": 68, + ".flash.rodata": 2, + "flash_total": 70 }, "libmain.a:app_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 53, - "flash_rodata": 10, - "total": 63 + "ram_st_total": 0, + ".flash.text": 53, + ".flash.rodata": 10, + "flash_total": 63 }, "libhal.a:state_asm--restore_extra_nw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 62, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 62 + ".iram0.text": 62, + "ram_st_total": 62, + "flash_total": 62 }, "libhal.a:state_asm--save_extra_nw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 62, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 62 - }, - "libdriver.a:uart.o": { - "data": 8, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 38, - "flash_rodata": 0, - "total": 58 + ".iram0.text": 62, + "ram_st_total": 62, + "flash_total": 62 }, "libstdc++.a:new_opv.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 56, - "total": 56 + "ram_st_total": 0, + ".flash.rodata": 56, + "flash_total": 56 + }, + "liblwip.a:ip.o": { + ".dram0.bss": 60, + "ram_st_total": 60, + ".flash.text": 50, + "flash_total": 50 + }, + "libdriver.a:uart.o": { + ".dram0.data": 8, + ".dram0.bss": 12, + "ram_st_total": 20, + ".flash.text": 38, + "flash_total": 46 }, "libfreertos.a:xtensa_vector_defaults.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 46, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 46 + ".iram0.text": 46, + "ram_st_total": 46, + "flash_total": 46 }, "libc.a:lib_a-fseek.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 45, - "flash_rodata": 0, - "total": 45 + "ram_st_total": 0, + ".flash.text": 45, + "flash_total": 45 }, "libgcc.a:_divdi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_moddi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_udivdi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_umoddi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libstdc++.a:new_op.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libfreertos.a:xtensa_init.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 32, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 36 + ".dram0.bss": 4, + ".iram0.text": 32, + "ram_st_total": 36, + "flash_total": 32 }, "libhal.a:interrupts--intlevel.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 32, - "total": 32 + "ram_st_total": 0, + ".flash.rodata": 32, + "flash_total": 32 }, "liblwip.a:init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 27, - "flash_rodata": 0, - "total": 27 + "ram_st_total": 0, + ".flash.text": 27, + "flash_total": 27 }, "libesp32.a:wifi_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 17, - "flash_rodata": 9, - "total": 26 + "ram_st_total": 0, + ".flash.text": 17, + ".flash.rodata": 9, + "flash_total": 26 }, "liblwip.a:ip6_addr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 20, - "total": 20 + "ram_st_total": 0, + ".flash.rodata": 20, + "flash_total": 20 }, "libc.a:lib_a-errno.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 10, - "flash_rodata": 0, - "total": 10 + "ram_st_total": 0, + ".flash.text": 10, + "flash_total": 10 }, "libhal.a:int_asm--set_intclear.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libxtensa-debug-module.a:eri.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libcxx.a:cxx_exception_stubs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 6, - "flash_rodata": 0, - "total": 6 + "ram_st_total": 0, + ".flash.text": 6, + "flash_total": 6 }, "libcxx.a:cxx_guards.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 5, - "flash_rodata": 0, - "total": 5 + "ram_st_total": 0, + ".flash.text": 5, + "flash_total": 5 }, "libfreertos.a:FreeRTOS-openocd.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "libstdc++.a:eh_term_handler.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "libstdc++.a:eh_unex_handler.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "libbootloader_support.a:bootloader_flash.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_sha.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:esp_image_format.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fputs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-snprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strerror.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-sysgettod.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-u_strerr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-vsnprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-xpg_strerror_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_api.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_arbit.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_core.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_dbg.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_hw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_param.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcore.a:misc_nvs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libdriver.a:gpio.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:ets_timer_legacy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:event_default_handlers.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:event_loop.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:lib_printf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:phy_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:sha.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:wifi_os_adapter.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libethernet.a:emac_dev.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libethernet.a:emac_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libfreertos.a:event_groups.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libfreertos.a:ringbuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_addsubdf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_cmpdf2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_divdf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_divsf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_extendsfdf2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_fixdfsi.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatdidf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatdisf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatsidf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_muldf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_popcountsi2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "liblwip.a:ethernetif.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "liblwip.a:ethip6.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "liblwip.a:wlanif.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedtls.a:esp_sha256.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_common.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_config.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_parent.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_route.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_schedule.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_utilities.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_wifi.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_action.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_action_vendor.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_api.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto_ccmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto_tkip.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto_wep.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_debug.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ets.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_hostap.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ht.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ie_vendor.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_input.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ioctl.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_mesh_quick.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_misc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_nvs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_output.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_phy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_power.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_proto.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_regdomain.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_rfid.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_scan.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_sta.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:wl_chm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:wl_cnx.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_api.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_item_hash_list.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_page.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_pagemanager.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_storage.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_types.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy_chip_v7.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy_chip_v7_ana.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy_chip_v7_cal.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:esf_buf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:if_hwctrl.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:lmac.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pm_for_bcn_only_mode.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pp_debug.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pp_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:rate_control.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:trc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:wdev.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:bt_bb.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:pm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:rtc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:rtc_analog.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsmartconfig_ack.a:smartconfig_ack.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc.a:gpio_periph.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc.a:rtc_sleep.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:bad_alloc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:del_op.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:del_opv.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:eh_exception.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:new_handler.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:pure.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:tinfo.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:ap_config.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:common.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_auth.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_auth_ie.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_common.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_debug.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_ie.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpabuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpas_glue.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa2.a:wpa2_internal.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa_supplicant.a:os_xtensa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwps.a:wps_internal.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 } } { - ".dram0.bss": { - "p_uart_obj": 12, - "s_rtc_isr_handle": 4, - "s_rtc_isr_handler_list": 4 + "current": { + ".dram0.bss": { + "p_uart_obj": 12, + "s_rtc_isr_handle": 4, + "s_rtc_isr_handler_list": 4 + }, + ".dram0.data": { + "timer_spinlock": 16, + "periph_spinlock": 8, + "s_rtc_isr_handler_list_lock": 8, + "uart_selectlock": 8 + }, + ".flash.rodata": { + "str1.4": 249, + "get_clk_en_mask": 128, + "get_rst_en_mask": 128, + "__FUNCTION__$5441": 24, + "TG": 8 + }, + ".flash.text": { + "get_clk_en_mask": 211, + "get_rst_en_mask": 157, + "timer_group_intr_enable": 112, + "rtc_isr": 86, + "periph_module_enable": 78, + "rtc_isr_ensure_installed": 75, + "rtc_gpio_force_hold_dis_all": 65, + "rtc_isr_register": 65, + "is_wifi_clk_peripheral": 28, + "uart_set_select_notif_callback": 26, + "get_rst_en_reg": 25, + "get_clk_en_reg": 21, + "uart_get_selectlock": 12 + }, + ".iram0.text": {}, + ".iram0.vectors": {}, + ".noinit": {}, + ".rtc.bss": {}, + ".rtc.data": {}, + ".rtc.text": {}, + ".rtc_noinit": {} }, - ".dram0.data": { - "timer_spinlock": 16, - "periph_spinlock": 8, - "s_rtc_isr_handler_list_lock": 8, - "uart_selectlock": 8 - }, - ".flash.rodata": { - "str1.4": 249, - "get_clk_en_mask": 128, - "get_rst_en_mask": 128, - "__FUNCTION__$5441": 24, - "TG": 8 - }, - ".flash.text": { - "get_clk_en_mask": 211, - "get_rst_en_mask": 157, - "timer_group_intr_enable": 112, - "rtc_isr": 86, - "periph_module_enable": 78, - "rtc_isr_ensure_installed": 75, - "rtc_gpio_force_hold_dis_all": 65, - "rtc_isr_register": 65, - "is_wifi_clk_peripheral": 28, - "uart_set_select_notif_callback": 26, - "get_rst_en_reg": 25, - "get_clk_en_reg": 21, - "uart_get_selectlock": 12 - }, - ".iram0.text": {}, - ".iram0.vectors": {}, - ".noinit": {} + "reference": {}, + "diff": { + ".dram0.bss": { + "p_uart_obj": 12, + "s_rtc_isr_handle": 4, + "s_rtc_isr_handler_list": 4 + }, + ".dram0.data": { + "periph_spinlock": 8, + "s_rtc_isr_handler_list_lock": 8, + "timer_spinlock": 16, + "uart_selectlock": 8 + }, + ".flash.rodata": { + "TG": 8, + "__FUNCTION__$5441": 24, + "get_clk_en_mask": 128, + "get_rst_en_mask": 128, + "str1.4": 249 + }, + ".flash.text": { + "get_clk_en_mask": 211, + "get_clk_en_reg": 21, + "get_rst_en_mask": 157, + "get_rst_en_reg": 25, + "is_wifi_clk_peripheral": 28, + "periph_module_enable": 78, + "rtc_gpio_force_hold_dis_all": 65, + "rtc_isr": 86, + "rtc_isr_ensure_installed": 75, + "rtc_isr_register": 65, + "timer_group_intr_enable": 112, + "uart_get_selectlock": 12, + "uart_set_select_notif_callback": 26 + }, + ".iram0.text": {}, + ".iram0.vectors": {}, + ".noinit": {}, + ".rtc.bss": {}, + ".rtc.data": {}, + ".rtc.text": {}, + ".rtc_noinit": {} + } } { "current": { "dram_data": 9324, "dram_bss": 8296, + "dram_rodata": 0, "dram_other": 0, "used_dram": 17620, - "available_dram": 163116, + "dram_total": 180736, "used_dram_ratio": 0.09749026203966006, + "dram_remain": 163116, + "iram_vectors": 1024, + "iram_text": 37908, + "iram_other": 0, "used_iram": 38932, - "available_iram": 92140, + "iram_total": 131072, "used_iram_ratio": 0.297027587890625, - "used_diram": 0, - "available_diram": 0, - "used_diram_ratio": 0, + "iram_remain": 92140, + "diram_data": 9324, + "diram_bss": 8296, + "diram_text": 37908, + "diram_vectors": 1024, + "diram_rodata": 0, + "diram_other": 0, + "diram_total": 311808, + "used_diram": 56552, + "used_diram_ratio": 0.18136802134646962, + "diram_remain": 255256, "flash_code": 146944, "flash_rodata": 39580, - "total_size": 234780 + "flash_other": 0, + "used_flash_non_ram": 186524, + "total_size": 283036 }, "reference": { "dram_data": 8580, "dram_bss": 2024, + "dram_rodata": 0, "dram_other": 0, "used_dram": 10604, - "available_dram": 170132, + "dram_total": 180736, "used_dram_ratio": 0.05867121104815864, - "used_iram": 38956, - "available_iram": 92116, - "used_iram_ratio": 0.297210693359375, - "used_diram": 0, - "available_diram": 0, - "used_diram_ratio": 0, + "dram_remain": 170132, + "iram_vectors": 1027, + "iram_text": 37932, + "iram_other": 0, + "used_iram": 38959, + "iram_total": 131072, + "used_iram_ratio": 0.29723358154296875, + "iram_remain": 92113, + "diram_data": 8580, + "diram_bss": 2024, + "diram_text": 37932, + "diram_vectors": 1027, + "diram_rodata": 0, + "diram_other": 0, + "diram_total": 311808, + "used_diram": 49563, + "used_diram_ratio": 0.1589535868226601, + "diram_remain": 262245, "flash_code": 77191, "flash_rodata": 22360, - "total_size": 147087 + "flash_other": 0, + "used_flash_non_ram": 99551, + "total_size": 194629 }, "diff": { "dram_data": 744, "dram_bss": 6272, + "dram_rodata": 0, "dram_other": 0, "used_dram": 7016, - "available_dram": -7016, + "dram_total": 0, "used_dram_ratio": 0.03881905099150142, - "used_iram": -24, - "available_iram": 24, - "used_iram_ratio": -0.00018310546875, - "used_diram": 0, - "available_diram": 0, - "used_diram_ratio": 0, + "dram_remain": -7016, + "iram_vectors": -3, + "iram_text": -24, + "iram_other": 0, + "used_iram": -27, + "iram_total": 0, + "used_iram_ratio": -0.00020599365234375, + "iram_remain": 27, + "diram_data": 744, + "diram_bss": 6272, + "diram_text": -24, + "diram_vectors": -3, + "diram_rodata": 0, + "diram_other": 0, + "diram_total": 0, + "used_diram": 6989, + "used_diram_ratio": 0.022414434523809534, + "diram_remain": -6989, "flash_code": 69753, "flash_rodata": 17220, - "total_size": 87693 + "flash_other": 0, + "used_flash_non_ram": 86973, + "total_size": 88407 } } { "current": { "liblwip.a": { - "data": 14, - "bss": 3751, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 66978, - "flash_rodata": 13936, - "total": 84679 + ".dram0.data": 14, + ".dram0.bss": 3751, + "ram_st_total": 3765, + ".flash.text": 66978, + ".flash.rodata": 13936, + "flash_total": 80928 }, "libc.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 55583, - "flash_rodata": 3889, - "total": 59472 + "ram_st_total": 0, + ".flash.text": 55583, + ".flash.rodata": 3709, + "flash_total": 59292 }, "libesp32.a": { - "data": 2635, - "bss": 2375, - "other": 0, - "iram": 7758, - "diram": 0, - "flash_text": 4814, - "flash_rodata": 8133, - "total": 25715 + ".dram0.data": 2635, + ".dram0.bss": 2375, + ".iram0.text": 7758, + "ram_st_total": 12768, + ".flash.text": 4814, + ".flash.rodata": 8133, + "flash_total": 23340 }, "libfreertos.a": { - "data": 4156, - "bss": 832, - "other": 0, - "iram": 12853, - "diram": 0, - "flash_text": 0, - "flash_rodata": 1545, - "total": 19386 + ".dram0.data": 4156, + ".dram0.bss": 832, + ".iram0.text": 12428, + ".iram0.vectors": 425, + "ram_st_total": 17841, + ".flash.rodata": 1545, + "flash_total": 18554 }, "libspi_flash.a": { - "data": 36, - "bss": 359, - "other": 0, - "iram": 7004, - "diram": 0, - "flash_text": 886, - "flash_rodata": 1624, - "total": 9909 + ".dram0.data": 36, + ".dram0.bss": 359, + ".iram0.text": 7004, + "ram_st_total": 7399, + ".flash.text": 886, + ".flash.rodata": 1624, + "flash_total": 9550 }, "libsoc.a": { - "data": 660, - "bss": 8, - "other": 0, - "iram": 3887, - "diram": 0, - "flash_text": 0, - "flash_rodata": 3456, - "total": 8011 + ".dram0.data": 660, + ".dram0.bss": 8, + ".iram0.text": 3887, + "ram_st_total": 4555, + ".flash.rodata": 3456, + "flash_total": 8003 }, "libheap.a": { - "data": 1331, - "bss": 4, - "other": 0, - "iram": 4376, - "diram": 0, - "flash_text": 1218, - "flash_rodata": 980, - "total": 7909 + ".dram0.data": 1331, + ".dram0.bss": 4, + ".iram0.text": 4376, + "ram_st_total": 5711, + ".flash.text": 1218, + ".flash.rodata": 980, + "flash_total": 7905 }, "libgcc.a": { - "data": 4, - "bss": 20, - "other": 0, - "iram": 104, - "diram": 0, - "flash_text": 5488, - "flash_rodata": 888, - "total": 6504 + ".dram0.data": 4, + ".dram0.bss": 20, + ".iram0.text": 104, + "ram_st_total": 128, + ".flash.text": 5488, + ".flash.rodata": 888, + "flash_total": 6484 }, "libvfs.a": { - "data": 232, - "bss": 103, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3770, - "flash_rodata": 403, - "total": 4508 + ".dram0.data": 232, + ".dram0.bss": 103, + "ram_st_total": 335, + ".flash.text": 3770, + ".flash.rodata": 403, + "flash_total": 4405 }, "libunity.a": { - "data": 0, - "bss": 121, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2316, - "flash_rodata": 830, - "total": 3267 + ".dram0.bss": 121, + "ram_st_total": 121, + ".flash.text": 2316, + ".flash.rodata": 830, + "flash_total": 3146 }, "libstdc++.a": { - "data": 8, - "bss": 16, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1827, - "flash_rodata": 1062, - "total": 2913 + ".dram0.data": 8, + ".dram0.bss": 16, + "ram_st_total": 24, + ".flash.text": 1827, + ".flash.rodata": 1062, + "flash_total": 2897 }, "libnewlib.a": { - "data": 152, - "bss": 272, - "other": 0, - "iram": 853, - "diram": 0, - "flash_text": 803, - "flash_rodata": 86, - "total": 2166 + ".dram0.data": 152, + ".dram0.bss": 272, + ".iram0.text": 853, + "ram_st_total": 1277, + ".flash.text": 803, + ".flash.rodata": 86, + "flash_total": 1894 }, "libpthread.a": { - "data": 16, - "bss": 12, - "other": 0, - "iram": 174, - "diram": 0, - "flash_text": 774, - "flash_rodata": 638, - "total": 1614 + ".dram0.data": 16, + ".dram0.bss": 12, + ".iram0.text": 174, + "ram_st_total": 202, + ".flash.text": 774, + ".flash.rodata": 638, + "flash_total": 1602 }, "libdriver.a": { - "data": 40, - "bss": 20, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 961, - "flash_rodata": 537, - "total": 1558 + ".dram0.data": 40, + ".dram0.bss": 20, + "ram_st_total": 60, + ".flash.text": 961, + ".flash.rodata": 537, + "flash_total": 1538 }, "liblog.a": { - "data": 8, - "bss": 268, - "other": 0, - "iram": 456, - "diram": 0, - "flash_text": 396, - "flash_rodata": 166, - "total": 1294 + ".dram0.data": 8, + ".dram0.bss": 268, + ".iram0.text": 456, + "ram_st_total": 732, + ".flash.text": 396, + ".flash.rodata": 166, + "flash_total": 1026 }, "libapp_update.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 123, - "flash_rodata": 717, - "total": 840 - }, - "libtcpip_adapter.a": { - "data": 0, - "bss": 81, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 180, - "flash_rodata": 359, - "total": 620 + "ram_st_total": 0, + ".flash.text": 123, + ".flash.rodata": 717, + "flash_total": 840 }, "libhal.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 515, - "diram": 0, - "flash_text": 0, - "flash_rodata": 32, - "total": 547 + ".iram0.text": 515, + "ram_st_total": 515, + ".flash.rodata": 32, + "flash_total": 547 + }, + "libtcpip_adapter.a": { + ".dram0.bss": 81, + "ram_st_total": 81, + ".flash.text": 180, + ".flash.rodata": 359, + "flash_total": 539 }, "libm.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 92, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 92 + ".iram0.text": 92, + "ram_st_total": 92, + "flash_total": 92 }, "libmain.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 53, - "flash_rodata": 10, - "total": 63 + "ram_st_total": 0, + ".flash.text": 53, + ".flash.rodata": 10, + "flash_total": 63 }, "libcxx.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 11, - "flash_rodata": 0, - "total": 11 + "ram_st_total": 0, + ".flash.text": 11, + "flash_total": 11 }, "libxtensa-debug-module.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libbootloader_support.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcore.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libethernet.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedtls.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsmartconfig_ack.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa2.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa_supplicant.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwps.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 } }, "reference": { "libc.a": { - "data": 364, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 54704, - "flash_rodata": 3883, - "total": 58951 + ".dram0.data": 364, + "ram_st_total": 364, + ".flash.text": 54704, + ".flash.rodata": 3703, + "flash_total": 58771 }, "libfreertos.a": { - "data": 4140, - "bss": 792, - "other": 0, - "iram": 12884, - "diram": 0, - "flash_text": 0, - "flash_rodata": 1721, - "total": 19537 + ".dram0.data": 4140, + ".dram0.bss": 792, + ".iram0.text": 12459, + ".iram0.vectors": 425, + "ram_st_total": 17816, + ".flash.rodata": 1451, + "flash_total": 18475 }, "libesp32.a": { - "data": 2118, - "bss": 81, - "other": 0, - "iram": 5462, - "diram": 0, - "flash_text": 4511, - "flash_rodata": 2751, - "total": 14923 + ".dram0.data": 2118, + ".dram0.bss": 81, + ".iram0.text": 5462, + "ram_st_total": 7661, + ".flash.text": 4511, + ".flash.rodata": 2751, + "flash_total": 14842 }, "libsoc.a": { - "data": 208, - "bss": 4, - "other": 0, - "iram": 6790, - "diram": 0, - "flash_text": 1763, - "flash_rodata": 1956, - "total": 10721 + ".dram0.data": 208, + ".dram0.bss": 4, + ".iram0.text": 6790, + "ram_st_total": 7002, + ".flash.text": 1763, + ".flash.rodata": 1956, + "flash_total": 10717 }, "libspi_flash.a": { - "data": 779, - "bss": 294, - "other": 0, - "iram": 4896, - "diram": 0, - "flash_text": 1135, - "flash_rodata": 1412, - "total": 8516 + ".dram0.data": 779, + ".dram0.bss": 294, + ".iram0.text": 4896, + "ram_st_total": 5969, + ".flash.text": 1135, + ".flash.rodata": 1412, + "flash_total": 8222 }, "libvfs.a": { - "data": 308, - "bss": 48, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 5650, - "flash_rodata": 915, - "total": 6921 + ".dram0.data": 308, + ".dram0.bss": 48, + "ram_st_total": 356, + ".flash.text": 5650, + ".flash.rodata": 915, + "flash_total": 6873 }, "libesp_common.a": { - "data": 8, - "bss": 184, - "other": 0, - "iram": 239, - "diram": 0, - "flash_text": 783, - "flash_rodata": 5421, - "total": 6635 + ".dram0.data": 8, + ".dram0.bss": 184, + ".iram0.text": 239, + "ram_st_total": 431, + ".flash.text": 783, + ".flash.rodata": 5421, + "flash_total": 6451 }, "libdriver.a": { - "data": 112, - "bss": 20, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 4272, - "flash_rodata": 1910, - "total": 6314 + ".dram0.data": 112, + ".dram0.bss": 20, + "ram_st_total": 132, + ".flash.text": 4272, + ".flash.rodata": 1910, + "flash_total": 6294 }, "libheap.a": { - "data": 304, - "bss": 4, - "other": 0, - "iram": 3129, - "diram": 0, - "flash_text": 884, - "flash_rodata": 741, - "total": 5062 - }, - "libnewlib.a": { - "data": 152, - "bss": 272, - "other": 0, - "iram": 820, - "diram": 0, - "flash_text": 868, - "flash_rodata": 84, - "total": 2196 + ".dram0.data": 304, + ".dram0.bss": 4, + ".iram0.text": 3129, + "ram_st_total": 3437, + ".flash.text": 884, + ".flash.rodata": 741, + "flash_total": 5058 }, "libesp_timer.a": { - "data": 16, - "bss": 20, - "other": 0, - "iram": 794, - "diram": 0, - "flash_text": 723, - "flash_rodata": 507, - "total": 2060 + ".dram0.data": 16, + ".dram0.bss": 20, + ".iram0.text": 794, + "ram_st_total": 830, + ".flash.text": 723, + ".flash.rodata": 493, + "flash_total": 2026 + }, + "libnewlib.a": { + ".dram0.data": 152, + ".dram0.bss": 272, + ".iram0.text": 820, + "ram_st_total": 1244, + ".flash.text": 868, + ".flash.rodata": 84, + "flash_total": 1924 }, "libbootloader_support.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 1028, - "diram": 0, - "flash_text": 565, - "flash_rodata": 20, - "total": 1613 - }, - "liblog.a": { - "data": 8, - "bss": 272, - "other": 0, - "iram": 222, - "diram": 0, - "flash_text": 484, - "flash_rodata": 147, - "total": 1133 + ".iram0.text": 1028, + "ram_st_total": 1028, + ".flash.text": 565, + ".flash.rodata": 20, + "flash_total": 1613 }, "libesp_ringbuf.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 858, - "diram": 0, - "flash_text": 0, - "flash_rodata": 150, - "total": 1008 + ".iram0.text": 858, + "ram_st_total": 858, + ".flash.rodata": 150, + "flash_total": 1008 + }, + "liblog.a": { + ".dram0.data": 8, + ".dram0.bss": 272, + ".iram0.text": 222, + "ram_st_total": 502, + ".flash.text": 484, + ".flash.rodata": 147, + "flash_total": 861 }, "libapp_update.a": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 109, - "diram": 0, - "flash_text": 159, - "flash_rodata": 470, - "total": 742 + ".dram0.bss": 4, + ".iram0.text": 109, + "ram_st_total": 113, + ".flash.text": 159, + ".flash.rodata": 470, + "flash_total": 738 }, "libhal.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 447, - "diram": 0, - "flash_text": 0, - "flash_rodata": 32, - "total": 479 + ".iram0.text": 447, + "ram_st_total": 447, + ".flash.rodata": 32, + "flash_total": 479 }, "libpthread.a": { - "data": 8, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 264, - "flash_rodata": 0, - "total": 284 + ".dram0.data": 8, + ".dram0.bss": 12, + "ram_st_total": 20, + ".flash.text": 264, + "flash_total": 272 }, "libxtensa.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 217, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 217 + ".iram0.text": 217, + "ram_st_total": 217, + "flash_total": 217 }, "libgcc.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 160, - "total": 160 + "ram_st_total": 0, + ".flash.rodata": 160, + "flash_total": 160 }, "libsoc_esp32.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 160, - "total": 160 + "ram_st_total": 0, + ".flash.rodata": 160, + "flash_total": 160 }, "libmain.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 72, - "flash_rodata": 39, - "total": 111 + "ram_st_total": 0, + ".flash.text": 72, + ".flash.rodata": 39, + "flash_total": 111 }, "(exe)": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 3, - "diram": 0, - "flash_text": 3, - "flash_rodata": 12, - "total": 18 + ".iram0.vectors": 3, + "ram_st_total": 3, + ".flash.text": 3, + ".flash.rodata": 12, + "flash_total": 18 }, "libcxx.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 11, - "flash_rodata": 0, - "total": 11 + "ram_st_total": 0, + ".flash.text": 11, + "flash_total": 11 }, "libefuse.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedcrypto.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa_supplicant.a": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 } }, "diff": { "(exe)": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -12, - "flash_text": -3, - "iram": -3, - "other": 0, - "total": -18 + ".flash.rodata": -12, + ".flash.text": -3, + ".iram0.vectors": -3, + "flash_total": -18, + "ram_st_total": -3 }, "libapp_update.a": { - "bss": -4, - "data": 0, - "diram": 0, - "flash_rodata": 247, - "flash_text": -36, - "iram": -109, - "other": 0, - "total": 98 + ".dram0.bss": -4, + ".flash.rodata": 247, + ".flash.text": -36, + ".iram0.text": -109, + "flash_total": 102, + "ram_st_total": -113 }, "libbootloader_support.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -20, - "flash_text": -565, - "iram": -1028, - "other": 0, - "total": -1613 + ".flash.rodata": -20, + ".flash.text": -565, + ".iram0.text": -1028, + "flash_total": -1613, + "ram_st_total": -1028 }, "libc.a": { - "bss": 0, - "data": -364, - "diram": 0, - "flash_rodata": 6, - "flash_text": 879, - "iram": 0, - "other": 0, - "total": 521 + ".dram0.data": -364, + ".flash.rodata": 6, + ".flash.text": 879, + "flash_total": 521, + "ram_st_total": -364 }, "libcoexist.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcore.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcxx.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libdriver.a": { - "bss": 0, - "data": -72, - "diram": 0, - "flash_rodata": -1373, - "flash_text": -3311, - "iram": 0, - "other": 0, - "total": -4756 + ".dram0.bss": 0, + ".dram0.data": -72, + ".flash.rodata": -1373, + ".flash.text": -3311, + "flash_total": -4756, + "ram_st_total": -72 }, "libefuse.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a": { - "bss": 2294, - "data": 517, - "diram": 0, - "flash_rodata": 5382, - "flash_text": 303, - "iram": 2296, - "other": 0, - "total": 10792 + ".dram0.bss": 2294, + ".dram0.data": 517, + ".flash.rodata": 5382, + ".flash.text": 303, + ".iram0.text": 2296, + "flash_total": 8498, + "ram_st_total": 5107 }, "libesp_common.a": { - "bss": -184, - "data": -8, - "diram": 0, - "flash_rodata": -5421, - "flash_text": -783, - "iram": -239, - "other": 0, - "total": -6635 + ".dram0.bss": -184, + ".dram0.data": -8, + ".flash.rodata": -5421, + ".flash.text": -783, + ".iram0.text": -239, + "flash_total": -6451, + "ram_st_total": -431 }, "libesp_ringbuf.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -150, - "flash_text": 0, - "iram": -858, - "other": 0, - "total": -1008 + ".flash.rodata": -150, + ".iram0.text": -858, + "flash_total": -1008, + "ram_st_total": -858 }, "libesp_timer.a": { - "bss": -20, - "data": -16, - "diram": 0, - "flash_rodata": -507, - "flash_text": -723, - "iram": -794, - "other": 0, - "total": -2060 + ".dram0.bss": -20, + ".dram0.data": -16, + ".flash.rodata": -493, + ".flash.text": -723, + ".iram0.text": -794, + "flash_total": -2026, + "ram_st_total": -830 }, "libethernet.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libfreertos.a": { - "bss": 40, - "data": 16, - "diram": 0, - "flash_rodata": -176, - "flash_text": 0, - "iram": -31, - "other": 0, - "total": -151 + ".dram0.bss": 40, + ".dram0.data": 16, + ".flash.rodata": 94, + ".iram0.text": -31, + ".iram0.vectors": 0, + "flash_total": 79, + "ram_st_total": 25 }, "libgcc.a": { - "bss": 20, - "data": 4, - "diram": 0, - "flash_rodata": 728, - "flash_text": 5488, - "iram": 104, - "other": 0, - "total": 6344 + ".dram0.bss": 20, + ".dram0.data": 4, + ".flash.rodata": 728, + ".flash.text": 5488, + ".iram0.text": 104, + "flash_total": 6324, + "ram_st_total": 128 }, "libhal.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 68, - "other": 0, - "total": 68 + ".flash.rodata": 0, + ".iram0.text": 68, + "flash_total": 68, + "ram_st_total": 68 }, "libheap.a": { - "bss": 0, - "data": 1027, - "diram": 0, - "flash_rodata": 239, - "flash_text": 334, - "iram": 1247, - "other": 0, - "total": 2847 + ".dram0.bss": 0, + ".dram0.data": 1027, + ".flash.rodata": 239, + ".flash.text": 334, + ".iram0.text": 1247, + "flash_total": 2847, + "ram_st_total": 2274 }, "liblog.a": { - "bss": -4, - "data": 0, - "diram": 0, - "flash_rodata": 19, - "flash_text": -88, - "iram": 234, - "other": 0, - "total": 161 + ".dram0.bss": -4, + ".dram0.data": 0, + ".flash.rodata": 19, + ".flash.text": -88, + ".iram0.text": 234, + "flash_total": 165, + "ram_st_total": 230 }, "liblwip.a": { - "bss": 3751, - "data": 14, - "diram": 0, - "flash_rodata": 13936, - "flash_text": 66978, - "iram": 0, - "other": 0, - "total": 84679 + ".dram0.bss": 3751, + ".dram0.data": 14, + ".flash.rodata": 13936, + ".flash.text": 66978, + "flash_total": 80928, + "ram_st_total": 3765 }, "libm.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 92, - "other": 0, - "total": 92 + ".iram0.text": 92, + "flash_total": 92, + "ram_st_total": 92 }, "libmain.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -29, - "flash_text": -19, - "iram": 0, - "other": 0, - "total": -48 + ".flash.rodata": -29, + ".flash.text": -19, + "flash_total": -48, + "ram_st_total": 0 }, "libmbedcrypto.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmbedtls.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnewlib.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 2, - "flash_text": -65, - "iram": 33, - "other": 0, - "total": -30 + ".dram0.bss": 0, + ".dram0.data": 0, + ".flash.rodata": 2, + ".flash.text": -65, + ".iram0.text": 33, + "flash_total": -30, + "ram_st_total": 33 }, "libnvs_flash.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libphy.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpthread.a": { - "bss": 0, - "data": 8, - "diram": 0, - "flash_rodata": 638, - "flash_text": 510, - "iram": 174, - "other": 0, - "total": 1330 + ".dram0.bss": 0, + ".dram0.data": 8, + ".flash.rodata": 638, + ".flash.text": 510, + ".iram0.text": 174, + "flash_total": 1330, + "ram_st_total": 182 }, "librtc.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsmartconfig_ack.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc.a": { - "bss": 4, - "data": 452, - "diram": 0, - "flash_rodata": 1500, - "flash_text": -1763, - "iram": -2903, - "other": 0, - "total": -2710 + ".dram0.bss": 4, + ".dram0.data": 452, + ".flash.rodata": 1500, + ".flash.text": -1763, + ".iram0.text": -2903, + "flash_total": -2714, + "ram_st_total": -2447 }, "libsoc_esp32.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -160, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -160 + ".flash.rodata": -160, + "flash_total": -160, + "ram_st_total": 0 }, "libspi_flash.a": { - "bss": 65, - "data": -743, - "diram": 0, - "flash_rodata": 212, - "flash_text": -249, - "iram": 2108, - "other": 0, - "total": 1393 + ".dram0.bss": 65, + ".dram0.data": -743, + ".flash.rodata": 212, + ".flash.text": -249, + ".iram0.text": 2108, + "flash_total": 1328, + "ram_st_total": 1430 }, "libstdc++.a": { - "bss": 16, - "data": 8, - "diram": 0, - "flash_rodata": 1062, - "flash_text": 1827, - "iram": 0, - "other": 0, - "total": 2913 + ".dram0.bss": 16, + ".dram0.data": 8, + ".flash.rodata": 1062, + ".flash.text": 1827, + "flash_total": 2897, + "ram_st_total": 24 }, "libtcpip_adapter.a": { - "bss": 81, - "data": 0, - "diram": 0, - "flash_rodata": 359, - "flash_text": 180, - "iram": 0, - "other": 0, - "total": 620 + ".dram0.bss": 81, + ".flash.rodata": 359, + ".flash.text": 180, + "flash_total": 539, + "ram_st_total": 81 }, "libunity.a": { - "bss": 121, - "data": 0, - "diram": 0, - "flash_rodata": 830, - "flash_text": 2316, - "iram": 0, - "other": 0, - "total": 3267 + ".dram0.bss": 121, + ".flash.rodata": 830, + ".flash.text": 2316, + "flash_total": 3146, + "ram_st_total": 121 }, "libvfs.a": { - "bss": 55, - "data": -76, - "diram": 0, - "flash_rodata": -512, - "flash_text": -1880, - "iram": 0, - "other": 0, - "total": -2413 + ".dram0.bss": 55, + ".dram0.data": -76, + ".flash.rodata": -512, + ".flash.text": -1880, + "flash_total": -2468, + "ram_st_total": -21 }, "libwpa.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa2.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa_supplicant.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwps.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libxtensa-debug-module.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 8, - "other": 0, - "total": 8 + ".iram0.text": 8, + "flash_total": 8, + "ram_st_total": 8 }, "libxtensa.a": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -217, - "other": 0, - "total": -217 + ".iram0.text": -217, + "flash_total": -217, + "ram_st_total": -217 } } } { "current": { "libc.a:lib_a-vfprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 14193, - "flash_rodata": 756, - "total": 14949 + "ram_st_total": 0, + ".flash.text": 14193, + ".flash.rodata": 704, + "flash_total": 14897 }, "libc.a:lib_a-svfprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 13834, - "flash_rodata": 756, - "total": 14590 + "ram_st_total": 0, + ".flash.text": 13834, + ".flash.rodata": 756, + "flash_total": 14590 }, "libc.a:lib_a-svfiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 9642, - "flash_rodata": 1210, - "total": 10852 + "ram_st_total": 0, + ".flash.text": 9642, + ".flash.rodata": 1176, + "flash_total": 10818 }, "libc.a:lib_a-vfiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 9933, - "flash_rodata": 738, - "total": 10671 - }, - "liblwip.a:nd6.o": { - "data": 8, - "bss": 1027, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 8427, - "flash_rodata": 136, - "total": 9598 + "ram_st_total": 0, + ".flash.text": 9933, + ".flash.rodata": 704, + "flash_total": 10637 }, "liblwip.a:tcp_in.o": { - "data": 0, - "bss": 54, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 8127, - "flash_rodata": 916, - "total": 9097 + ".dram0.bss": 54, + "ram_st_total": 54, + ".flash.text": 8127, + ".flash.rodata": 916, + "flash_total": 9043 + }, + "liblwip.a:nd6.o": { + ".dram0.data": 8, + ".dram0.bss": 1027, + "ram_st_total": 1035, + ".flash.text": 8427, + ".flash.rodata": 136, + "flash_total": 8571 }, "libfreertos.a:tasks.o": { - "data": 20, - "bss": 700, - "other": 0, - "iram": 5667, - "diram": 0, - "flash_text": 0, - "flash_rodata": 503, - "total": 6890 + ".dram0.data": 20, + ".dram0.bss": 700, + ".iram0.text": 5667, + "ram_st_total": 6387, + ".flash.rodata": 503, + "flash_total": 6190 }, "liblwip.a:tcp_out.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 5060, - "flash_rodata": 1124, - "total": 6184 - }, - "liblwip.a:sockets.o": { - "data": 0, - "bss": 728, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 4627, - "flash_rodata": 824, - "total": 6179 + "ram_st_total": 0, + ".flash.text": 5060, + ".flash.rodata": 1124, + "flash_total": 6184 }, "liblwip.a:tcp.o": { - "data": 4, - "bss": 23, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 4290, - "flash_rodata": 1384, - "total": 5701 + ".dram0.data": 4, + ".dram0.bss": 23, + "ram_st_total": 27, + ".flash.text": 4290, + ".flash.rodata": 1384, + "flash_total": 5678 + }, + "liblwip.a:sockets.o": { + ".dram0.bss": 728, + "ram_st_total": 728, + ".flash.text": 4627, + ".flash.rodata": 824, + "flash_total": 5451 }, "liblwip.a:api_msg.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3763, - "flash_rodata": 1366, - "total": 5129 + "ram_st_total": 0, + ".flash.text": 3763, + ".flash.rodata": 1366, + "flash_total": 5129 }, "liblwip.a:dhcp.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3456, - "flash_rodata": 1401, - "total": 4865 + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 3456, + ".flash.rodata": 1401, + "flash_total": 4857 }, "libesp32.a:panic.o": { - "data": 2579, - "bss": 5, - "other": 0, - "iram": 2145, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4729 + ".dram0.data": 2579, + ".dram0.bss": 5, + ".iram0.text": 2145, + "ram_st_total": 4729, + "flash_total": 4724 }, "libesp32.a:esp_err_to_name.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 50, - "flash_rodata": 4091, - "total": 4141 + "ram_st_total": 0, + ".flash.text": 50, + ".flash.rodata": 4091, + "flash_total": 4141 }, "libgcc.a:unwind-dw2-fde.o": { - "data": 4, - "bss": 20, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3316, - "flash_rodata": 404, - "total": 3744 + ".dram0.data": 4, + ".dram0.bss": 20, + "ram_st_total": 24, + ".flash.text": 3316, + ".flash.rodata": 404, + "flash_total": 3724 }, "liblwip.a:pbuf.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2453, - "flash_rodata": 1161, - "total": 3615 + ".dram0.bss": 1, + "ram_st_total": 1, + ".flash.text": 2453, + ".flash.rodata": 1161, + "flash_total": 3614 }, "libfreertos.a:portasm.o": { - "data": 3084, - "bss": 0, - "other": 0, - "iram": 480, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 3564 + ".dram0.data": 3084, + ".iram0.text": 480, + "ram_st_total": 3564, + "flash_total": 3564 }, "libc.a:lib_a-dtoa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3522, - "flash_rodata": 13, - "total": 3535 - }, - "liblwip.a:etharp.o": { - "data": 0, - "bss": 241, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2618, - "flash_rodata": 658, - "total": 3517 + "ram_st_total": 0, + ".flash.text": 3522, + ".flash.rodata": 13, + "flash_total": 3535 }, "liblwip.a:ip6.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3212, - "flash_rodata": 124, - "total": 3336 - }, - "liblwip.a:dns.o": { - "data": 0, - "bss": 1292, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1809, - "flash_rodata": 206, - "total": 3307 + "ram_st_total": 0, + ".flash.text": 3212, + ".flash.rodata": 124, + "flash_total": 3336 }, "libspi_flash.a:spi_flash_rom_patch.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 2518, - "diram": 0, - "flash_text": 0, - "flash_rodata": 766, - "total": 3284 + ".iram0.text": 2518, + "ram_st_total": 2518, + ".flash.rodata": 766, + "flash_total": 3284 + }, + "liblwip.a:etharp.o": { + ".dram0.bss": 241, + "ram_st_total": 241, + ".flash.text": 2618, + ".flash.rodata": 658, + "flash_total": 3276 }, "liblwip.a:udp.o": { - "data": 2, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3020, - "flash_rodata": 216, - "total": 3242 + ".dram0.data": 2, + ".dram0.bss": 4, + "ram_st_total": 6, + ".flash.text": 3020, + ".flash.rodata": 216, + "flash_total": 3238 }, "libesp32.a:intr_alloc.o": { - "data": 8, - "bss": 22, - "other": 0, - "iram": 726, - "diram": 0, - "flash_text": 1749, - "flash_rodata": 710, - "total": 3215 + ".dram0.data": 8, + ".dram0.bss": 22, + ".iram0.text": 726, + "ram_st_total": 756, + ".flash.text": 1749, + ".flash.rodata": 710, + "flash_total": 3193 }, "libheap.a:multi_heap.o": { - "data": 857, - "bss": 0, - "other": 0, - "iram": 2217, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 3074 + ".dram0.data": 857, + ".iram0.text": 2217, + "ram_st_total": 3074, + "flash_total": 3074 }, "libfreertos.a:queue.o": { - "data": 8, - "bss": 56, - "other": 0, - "iram": 2569, - "diram": 0, - "flash_text": 0, - "flash_rodata": 369, - "total": 3002 - }, - "libspi_flash.a:flash_ops.o": { - "data": 32, - "bss": 41, - "other": 0, - "iram": 2352, - "diram": 0, - "flash_text": 99, - "flash_rodata": 0, - "total": 2524 + ".dram0.data": 8, + ".dram0.bss": 56, + ".iram0.text": 2569, + "ram_st_total": 2633, + ".flash.rodata": 369, + "flash_total": 2946 }, "libgcc.a:unwind-dw2-xtensa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2172, - "flash_rodata": 324, - "total": 2496 + "ram_st_total": 0, + ".flash.text": 2172, + ".flash.rodata": 324, + "flash_total": 2496 + }, + "libspi_flash.a:flash_ops.o": { + ".dram0.data": 32, + ".dram0.bss": 41, + ".iram0.text": 2352, + "ram_st_total": 2425, + ".flash.text": 99, + "flash_total": 2483 }, "libsoc.a:rtc_clk.o": { - "data": 660, - "bss": 8, - "other": 0, - "iram": 1794, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 2462 + ".dram0.data": 660, + ".dram0.bss": 8, + ".iram0.text": 1794, + "ram_st_total": 2462, + "flash_total": 2454 }, "libc.a:lib_a-mprec.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2134, - "flash_rodata": 296, - "total": 2430 - }, - "libvfs.a:vfs.o": { - "data": 192, - "bss": 40, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1995, - "flash_rodata": 132, - "total": 2359 + "ram_st_total": 0, + ".flash.text": 2134, + ".flash.rodata": 296, + "flash_total": 2430 }, "liblwip.a:ip6_frag.o": { - "data": 0, - "bss": 6, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1905, - "flash_rodata": 442, - "total": 2353 + ".dram0.bss": 6, + "ram_st_total": 6, + ".flash.text": 1905, + ".flash.rodata": 442, + "flash_total": 2347 }, "liblwip.a:api_lib.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1425, - "flash_rodata": 919, - "total": 2344 + "ram_st_total": 0, + ".flash.text": 1425, + ".flash.rodata": 919, + "flash_total": 2344 + }, + "libvfs.a:vfs.o": { + ".dram0.data": 192, + ".dram0.bss": 40, + "ram_st_total": 232, + ".flash.text": 1995, + ".flash.rodata": 132, + "flash_total": 2319 }, "liblwip.a:igmp.o": { - "data": 0, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1604, - "flash_rodata": 707, - "total": 2323 - }, - "libesp32.a:dbg_stubs.o": { - "data": 0, - "bss": 2072, - "other": 0, - "iram": 32, - "diram": 0, - "flash_text": 100, - "flash_rodata": 0, - "total": 2204 - }, - "libvfs.a:vfs_uart.o": { - "data": 40, - "bss": 63, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1775, - "flash_rodata": 271, - "total": 2149 + ".dram0.bss": 12, + "ram_st_total": 12, + ".flash.text": 1604, + ".flash.rodata": 707, + "flash_total": 2311 }, "libunity.a:unity_platform.o": { - "data": 0, - "bss": 13, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1511, - "flash_rodata": 600, - "total": 2124 + ".dram0.bss": 13, + "ram_st_total": 13, + ".flash.text": 1511, + ".flash.rodata": 600, + "flash_total": 2111 + }, + "libvfs.a:vfs_uart.o": { + ".dram0.data": 40, + ".dram0.bss": 63, + "ram_st_total": 103, + ".flash.text": 1775, + ".flash.rodata": 271, + "flash_total": 2086 }, "libesp32.a:esp_timer_esp32.o": { - "data": 8, - "bss": 26, - "other": 0, - "iram": 1295, - "diram": 0, - "flash_text": 254, - "flash_rodata": 526, - "total": 2109 + ".dram0.data": 8, + ".dram0.bss": 26, + ".iram0.text": 1295, + "ram_st_total": 1329, + ".flash.text": 254, + ".flash.rodata": 526, + "flash_total": 2083 }, "libsoc.a:rtc_periph.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 2080, - "total": 2080 + "ram_st_total": 0, + ".flash.rodata": 2080, + "flash_total": 2080 }, - "libspi_flash.a:flash_mmap.o": { - "data": 0, - "bss": 296, - "other": 0, - "iram": 1298, - "diram": 0, - "flash_text": 124, - "flash_rodata": 327, - "total": 2045 + "liblwip.a:dns.o": { + ".dram0.bss": 1292, + "ram_st_total": 1292, + ".flash.text": 1809, + ".flash.rodata": 206, + "flash_total": 2015 }, "libheap.a:heap_caps.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 1195, - "diram": 0, - "flash_text": 188, - "flash_rodata": 593, - "total": 1980 + ".dram0.data": 4, + ".iram0.text": 1195, + "ram_st_total": 1199, + ".flash.text": 188, + ".flash.rodata": 593, + "flash_total": 1980 }, "libstdc++.a:eh_personality.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1561, - "flash_rodata": 384, - "total": 1945 + "ram_st_total": 0, + ".flash.text": 1561, + ".flash.rodata": 384, + "flash_total": 1945 }, "liblwip.a:ip4.o": { - "data": 0, - "bss": 6, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1664, - "flash_rodata": 139, - "total": 1809 + ".dram0.bss": 6, + "ram_st_total": 6, + ".flash.text": 1664, + ".flash.rodata": 139, + "flash_total": 1803 }, - "liblwip.a:netif.o": { - "data": 0, - "bss": 241, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1239, - "flash_rodata": 287, - "total": 1767 + "libspi_flash.a:flash_mmap.o": { + ".dram0.bss": 296, + ".iram0.text": 1298, + "ram_st_total": 1594, + ".flash.text": 124, + ".flash.rodata": 327, + "flash_total": 1749 }, "libfreertos.a:xtensa_vectors.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 1697, - "diram": 0, - "flash_text": 0, - "flash_rodata": 36, - "total": 1741 + ".dram0.data": 8, + ".iram0.text": 1272, + ".iram0.vectors": 425, + "ram_st_total": 1705, + ".flash.rodata": 36, + "flash_total": 1741 }, "libesp32.a:cpu_start.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 806, - "diram": 0, - "flash_text": 277, - "flash_rodata": 486, - "total": 1570 + ".dram0.bss": 1, + ".iram0.text": 806, + "ram_st_total": 807, + ".flash.text": 277, + ".flash.rodata": 486, + "flash_total": 1569 }, "libesp32.a:clk.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 67, - "diram": 0, - "flash_text": 581, - "flash_rodata": 893, - "total": 1541 + ".iram0.text": 67, + "ram_st_total": 67, + ".flash.text": 581, + ".flash.rodata": 893, + "flash_total": 1541 }, - "libfreertos.a:timers.o": { - "data": 8, - "bss": 56, - "other": 0, - "iram": 1149, - "diram": 0, - "flash_text": 0, - "flash_rodata": 233, - "total": 1446 + "liblwip.a:netif.o": { + ".dram0.bss": 241, + "ram_st_total": 241, + ".flash.text": 1239, + ".flash.rodata": 287, + "flash_total": 1526 }, "liblwip.a:sys_arch.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1216, - "flash_rodata": 222, - "total": 1446 + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 1216, + ".flash.rodata": 222, + "flash_total": 1438 }, "libheap.a:multi_heap_poisoning.o": { - "data": 470, - "bss": 0, - "other": 0, - "iram": 964, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1434 + ".dram0.data": 470, + ".iram0.text": 964, + "ram_st_total": 1434, + "flash_total": 1434 }, "libheap.a:heap_caps_init.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1030, - "flash_rodata": 387, - "total": 1421 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 1030, + ".flash.rodata": 387, + "flash_total": 1417 + }, + "libfreertos.a:timers.o": { + ".dram0.data": 8, + ".dram0.bss": 56, + ".iram0.text": 1149, + "ram_st_total": 1213, + ".flash.rodata": 233, + "flash_total": 1390 }, "liblwip.a:mld6.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1334, - "flash_rodata": 0, - "total": 1338 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 1334, + "flash_total": 1334 }, "libspi_flash.a:cache_utils.o": { - "data": 4, - "bss": 14, - "other": 0, - "iram": 836, - "diram": 0, - "flash_text": 81, - "flash_rodata": 390, - "total": 1325 + ".dram0.data": 4, + ".dram0.bss": 14, + ".iram0.text": 836, + "ram_st_total": 854, + ".flash.text": 81, + ".flash.rodata": 390, + "flash_total": 1311 }, "liblwip.a:raw.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1087, - "flash_rodata": 223, - "total": 1314 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 1087, + ".flash.rodata": 223, + "flash_total": 1310 }, "libesp32.a:esp_timer.o": { - "data": 8, - "bss": 20, - "other": 0, - "iram": 702, - "diram": 0, - "flash_text": 429, - "flash_rodata": 142, - "total": 1301 - }, - "liblog.a:log.o": { - "data": 8, - "bss": 268, - "other": 0, - "iram": 456, - "diram": 0, - "flash_text": 396, - "flash_rodata": 166, - "total": 1294 + ".dram0.data": 8, + ".dram0.bss": 20, + ".iram0.text": 702, + "ram_st_total": 730, + ".flash.text": 429, + ".flash.rodata": 142, + "flash_total": 1281 }, "libesp32.a:system_api.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 589, - "diram": 0, - "flash_text": 0, - "flash_rodata": 662, - "total": 1259 + ".dram0.bss": 8, + ".iram0.text": 589, + "ram_st_total": 597, + ".flash.rodata": 662, + "flash_total": 1251 }, "libsoc.a:soc_memory_layout.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 1239, - "total": 1239 + "ram_st_total": 0, + ".flash.rodata": 1239, + "flash_total": 1239 }, "liblwip.a:icmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 769, - "flash_rodata": 371, - "total": 1140 + "ram_st_total": 0, + ".flash.text": 769, + ".flash.rodata": 371, + "flash_total": 1140 }, "libfreertos.a:xtensa_intr_asm.o": { - "data": 1024, - "bss": 0, - "other": 0, - "iram": 51, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1075 + ".dram0.data": 1024, + ".iram0.text": 51, + "ram_st_total": 1075, + "flash_total": 1075 }, - "libfreertos.a:port.o": { - "data": 0, - "bss": 16, - "other": 0, - "iram": 617, - "diram": 0, - "flash_text": 0, - "flash_rodata": 369, - "total": 1002 + "liblog.a:log.o": { + ".dram0.data": 8, + ".dram0.bss": 268, + ".iram0.text": 456, + "ram_st_total": 732, + ".flash.text": 396, + ".flash.rodata": 166, + "flash_total": 1026 }, "libpthread.a:pthread.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 174, - "diram": 0, - "flash_text": 298, - "flash_rodata": 512, - "total": 1000 + ".dram0.data": 8, + ".dram0.bss": 8, + ".iram0.text": 174, + "ram_st_total": 190, + ".flash.text": 298, + ".flash.rodata": 512, + "flash_total": 992 }, "liblwip.a:icmp6.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 863, - "flash_rodata": 127, - "total": 990 + "ram_st_total": 0, + ".flash.text": 863, + ".flash.rodata": 127, + "flash_total": 990 + }, + "libfreertos.a:port.o": { + ".dram0.bss": 16, + ".iram0.text": 617, + "ram_st_total": 633, + ".flash.rodata": 369, + "flash_total": 986 }, "libsoc.a:rtc_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 980, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 980 - }, - "libunity.a:unity.o": { - "data": 0, - "bss": 108, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 767, - "flash_rodata": 90, - "total": 965 + ".iram0.text": 980, + "ram_st_total": 980, + "flash_total": 980 }, "libsoc.a:rtc_time.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 803, - "diram": 0, - "flash_text": 0, - "flash_rodata": 137, - "total": 940 + ".iram0.text": 803, + "ram_st_total": 803, + ".flash.rodata": 137, + "flash_total": 940 }, "libesp32.a:dport_access.o": { - "data": 8, - "bss": 40, - "other": 0, - "iram": 539, - "diram": 0, - "flash_text": 189, - "flash_rodata": 129, - "total": 905 + ".dram0.data": 8, + ".dram0.bss": 40, + ".iram0.text": 539, + "ram_st_total": 587, + ".flash.text": 189, + ".flash.rodata": 129, + "flash_total": 865 }, "libc.a:lib_a-fseeko.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 862, - "flash_rodata": 0, - "total": 862 + "ram_st_total": 0, + ".flash.text": 862, + "flash_total": 862 }, - "libnewlib.a:time.o": { - "data": 0, - "bss": 32, - "other": 0, - "iram": 139, - "diram": 0, - "flash_text": 691, - "flash_rodata": 0, - "total": 862 - }, - "liblwip.a:tcpip.o": { - "data": 0, - "bss": 16, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 644, - "flash_rodata": 191, - "total": 851 + "libunity.a:unity.o": { + ".dram0.bss": 108, + "ram_st_total": 108, + ".flash.text": 767, + ".flash.rodata": 90, + "flash_total": 857 }, "libapp_update.a:esp_ota_ops.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 123, - "flash_rodata": 717, - "total": 840 + "ram_st_total": 0, + ".flash.text": 123, + ".flash.rodata": 717, + "flash_total": 840 + }, + "liblwip.a:tcpip.o": { + ".dram0.bss": 16, + "ram_st_total": 16, + ".flash.text": 644, + ".flash.rodata": 191, + "flash_total": 835 + }, + "libnewlib.a:time.o": { + ".dram0.bss": 32, + ".iram0.text": 139, + "ram_st_total": 171, + ".flash.text": 691, + "flash_total": 830 }, "libdriver.a:periph_ctrl.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 520, - "flash_rodata": 256, - "total": 784 + ".dram0.data": 8, + "ram_st_total": 8, + ".flash.text": 520, + ".flash.rodata": 256, + "flash_total": 784 }, "liblwip.a:timers.o": { - "data": 0, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 638, - "flash_rodata": 131, - "total": 781 + ".dram0.bss": 12, + "ram_st_total": 12, + ".flash.text": 638, + ".flash.rodata": 131, + "flash_total": 769 }, "libspi_flash.a:partition.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 582, - "flash_rodata": 141, - "total": 731 + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 582, + ".flash.rodata": 141, + "flash_total": 723 }, "libnewlib.a:locks.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 552, - "diram": 0, - "flash_text": 0, - "flash_rodata": 84, - "total": 644 - }, - "libesp32.a:ipc.o": { - "data": 0, - "bss": 36, - "other": 0, - "iram": 159, - "diram": 0, - "flash_text": 329, - "flash_rodata": 104, - "total": 628 - }, - "libtcpip_adapter.a:tcpip_adapter_lwip.o": { - "data": 0, - "bss": 81, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 180, - "flash_rodata": 359, - "total": 620 + ".dram0.data": 8, + ".iram0.text": 552, + "ram_st_total": 560, + ".flash.rodata": 84, + "flash_total": 644 }, "libpthread.a:pthread_local_storage.o": { - "data": 8, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 476, - "flash_rodata": 126, - "total": 614 + ".dram0.data": 8, + ".dram0.bss": 4, + "ram_st_total": 12, + ".flash.text": 476, + ".flash.rodata": 126, + "flash_total": 610 + }, + "libesp32.a:ipc.o": { + ".dram0.bss": 36, + ".iram0.text": 159, + "ram_st_total": 195, + ".flash.text": 329, + ".flash.rodata": 104, + "flash_total": 592 }, "liblwip.a:inet_chksum.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 580, - "flash_rodata": 0, - "total": 580 + "ram_st_total": 0, + ".flash.text": 580, + "flash_total": 580 + }, + "libtcpip_adapter.a:tcpip_adapter_lwip.o": { + ".dram0.bss": 81, + "ram_st_total": 81, + ".flash.text": 180, + ".flash.rodata": 359, + "flash_total": 539 }, "libesp32.a:crosscore_int.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 204, - "diram": 0, - "flash_text": 126, - "flash_rodata": 148, - "total": 494 + ".dram0.data": 8, + ".dram0.bss": 8, + ".iram0.text": 204, + "ram_st_total": 220, + ".flash.text": 126, + ".flash.rodata": 148, + "flash_total": 486 }, "liblwip.a:netbuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 154, - "flash_rodata": 326, - "total": 480 + "ram_st_total": 0, + ".flash.text": 154, + ".flash.rodata": 326, + "flash_total": 480 }, "liblwip.a:vfs_lwip.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 307, - "flash_rodata": 155, - "total": 462 - }, - "libnewlib.a:syscall_table.o": { - "data": 144, - "bss": 240, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 67, - "flash_rodata": 0, - "total": 451 + "ram_st_total": 0, + ".flash.text": 307, + ".flash.rodata": 155, + "flash_total": 462 }, "libdriver.a:timer.o": { - "data": 16, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 112, - "flash_rodata": 281, - "total": 409 + ".dram0.data": 16, + "ram_st_total": 16, + ".flash.text": 112, + ".flash.rodata": 281, + "flash_total": 409 }, "libesp32.a:int_wdt.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 87, - "diram": 0, - "flash_text": 301, - "flash_rodata": 0, - "total": 389 + ".dram0.bss": 1, + ".iram0.text": 87, + "ram_st_total": 88, + ".flash.text": 301, + "flash_total": 388 }, "libstdc++.a:eh_globals.o": { - "data": 0, - "bss": 16, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 149, - "flash_rodata": 193, - "total": 358 + ".dram0.bss": 16, + "ram_st_total": 16, + ".flash.text": 149, + ".flash.rodata": 193, + "flash_total": 342 }, "libesp32.a:brownout.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 145, - "flash_rodata": 191, - "total": 336 - }, - "libesp32.a:freertos_hooks.o": { - "data": 8, - "bss": 128, - "other": 0, - "iram": 43, - "diram": 0, - "flash_text": 137, - "flash_rodata": 0, - "total": 316 + "ram_st_total": 0, + ".flash.text": 145, + ".flash.rodata": 191, + "flash_total": 336 }, "libhal.a:windowspill_asm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 311, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 311 + ".iram0.text": 311, + "ram_st_total": 311, + "flash_total": 311 }, "libsoc.a:cpu_util.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 310, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 310 + ".iram0.text": 310, + "ram_st_total": 310, + "flash_total": 310 }, "libdriver.a:rtc_module.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 291, - "flash_rodata": 0, - "total": 307 + ".dram0.data": 8, + ".dram0.bss": 8, + "ram_st_total": 16, + ".flash.text": 291, + "flash_total": 299 }, "libfreertos.a:xtensa_context.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 299, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 299 + ".iram0.text": 299, + "ram_st_total": 299, + "flash_total": 299 }, "libstdc++.a:eh_terminate.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 117, - "flash_rodata": 141, - "total": 258 + "ram_st_total": 0, + ".flash.text": 117, + ".flash.rodata": 141, + "flash_total": 258 }, "liblwip.a:ethernet.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 244, - "flash_rodata": 12, - "total": 256 - }, - "libc.a:lib_a-puts.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 182, - "flash_rodata": 60, - "total": 242 + "ram_st_total": 0, + ".flash.text": 244, + ".flash.rodata": 12, + "flash_total": 256 }, "libesp32.a:dport_panic_highint_hdl.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 234, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 242 + ".dram0.data": 8, + ".iram0.text": 234, + "ram_st_total": 242, + "flash_total": 242 }, "libc.a:lib_a-reent.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 232, - "flash_rodata": 0, - "total": 232 + "ram_st_total": 0, + ".flash.text": 232, + "flash_total": 232 }, "libc.a:lib_a-fopen.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 228, - "flash_rodata": 0, - "total": 228 + "ram_st_total": 0, + ".flash.text": 228, + "flash_total": 228 + }, + "libnewlib.a:syscall_table.o": { + ".dram0.data": 144, + ".dram0.bss": 240, + "ram_st_total": 384, + ".flash.text": 67, + "flash_total": 211 }, "liblwip.a:dhcpserver.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 203, - "flash_rodata": 0, - "total": 207 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 203, + "flash_total": 203 + }, + "libesp32.a:freertos_hooks.o": { + ".dram0.data": 8, + ".dram0.bss": 128, + ".iram0.text": 43, + "ram_st_total": 179, + ".flash.text": 137, + "flash_total": 188 + }, + "libc.a:lib_a-puts.o": { + "ram_st_total": 0, + ".flash.text": 182, + ".flash.rodata": 0, + "flash_total": 182 }, "libunity.a:test_utils.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 38, - "flash_rodata": 140, - "total": 178 + "ram_st_total": 0, + ".flash.text": 38, + ".flash.rodata": 140, + "flash_total": 178 }, "libc.a:lib_a-sprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 167, - "flash_rodata": 0, - "total": 167 + "ram_st_total": 0, + ".flash.text": 167, + "flash_total": 167 }, "libesp32.a:cache_err_int.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 56, - "diram": 0, - "flash_text": 98, - "flash_rodata": 0, - "total": 154 + ".iram0.text": 56, + "ram_st_total": 56, + ".flash.text": 98, + "flash_total": 154 }, "libfreertos.a:list.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 142, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 142 + ".iram0.text": 142, + "ram_st_total": 142, + "flash_total": 142 }, "libfreertos.a:xtensa_intr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 104, - "diram": 0, - "flash_text": 0, - "flash_rodata": 35, - "total": 139 + ".iram0.text": 104, + "ram_st_total": 104, + ".flash.rodata": 35, + "flash_total": 139 }, "libnewlib.a:syscalls.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 94, - "diram": 0, - "flash_text": 45, - "flash_rodata": 0, - "total": 139 + ".iram0.text": 94, + "ram_st_total": 94, + ".flash.text": 45, + "flash_total": 139 }, "libstdc++.a:si_class_type_info.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 136, - "total": 136 + "ram_st_total": 0, + ".flash.rodata": 136, + "flash_total": 136 + }, + "libesp32.a:dbg_stubs.o": { + ".dram0.bss": 2072, + ".iram0.text": 32, + "ram_st_total": 2104, + ".flash.text": 100, + "flash_total": 132 }, "libc.a:lib_a-assert.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 68, - "flash_rodata": 60, - "total": 128 + "ram_st_total": 0, + ".flash.text": 68, + ".flash.rodata": 60, + "flash_total": 128 }, "libc.a:lib_a-flags.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 127, - "flash_rodata": 0, - "total": 127 + "ram_st_total": 0, + ".flash.text": 127, + "flash_total": 127 }, "libc.a:lib_a-printf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 116, - "flash_rodata": 0, - "total": 116 + "ram_st_total": 0, + ".flash.text": 116, + "flash_total": 116 }, "liblwip.a:ip4_addr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 72, - "flash_rodata": 40, - "total": 112 + "ram_st_total": 0, + ".flash.text": 72, + ".flash.rodata": 40, + "flash_total": 112 }, "libstdc++.a:class_type_info.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 112, - "total": 112 + "ram_st_total": 0, + ".flash.rodata": 112, + "flash_total": 112 }, "libc.a:lib_a-s_frexp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 110, - "flash_rodata": 0, - "total": 110 - }, - "liblwip.a:ip.o": { - "data": 0, - "bss": 60, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 50, - "flash_rodata": 0, - "total": 110 + "ram_st_total": 0, + ".flash.text": 110, + "flash_total": 110 }, "liblwip.a:memp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 108, - "total": 108 + "ram_st_total": 0, + ".flash.rodata": 108, + "flash_total": 108 }, "libgcc.a:lib2funcs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 104, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 104 + ".iram0.text": 104, + "ram_st_total": 104, + "flash_total": 104 }, "libc.a:lib_a-vprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 94, - "flash_rodata": 0, - "total": 94 + "ram_st_total": 0, + ".flash.text": 94, + "flash_total": 94 }, "libm.a:lib_a-s_fpclassify.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 92, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 92 + ".iram0.text": 92, + "ram_st_total": 92, + "flash_total": 92 }, "liblwip.a:def.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 91, - "flash_rodata": 0, - "total": 91 + "ram_st_total": 0, + ".flash.text": 91, + "flash_total": 91 }, "libc.a:lib_a-fiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 84, - "flash_rodata": 0, - "total": 84 + "ram_st_total": 0, + ".flash.text": 84, + "flash_total": 84 }, "libesp32.a:hw_random.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 74, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 78 + ".dram0.bss": 4, + ".iram0.text": 74, + "ram_st_total": 78, + "flash_total": 74 }, "libesp32.a:stack_check.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 32, - "flash_rodata": 42, - "total": 78 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 32, + ".flash.rodata": 42, + "flash_total": 74 }, "libhal.a:clock.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 72, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 72 + ".iram0.text": 72, + "ram_st_total": 72, + "flash_total": 72 }, "libnewlib.a:reent_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 68, - "diram": 0, - "flash_text": 0, - "flash_rodata": 2, - "total": 70 + ".iram0.text": 68, + "ram_st_total": 68, + ".flash.rodata": 2, + "flash_total": 70 }, "libmain.a:app_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 53, - "flash_rodata": 10, - "total": 63 + "ram_st_total": 0, + ".flash.text": 53, + ".flash.rodata": 10, + "flash_total": 63 }, "libhal.a:state_asm--restore_extra_nw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 62, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 62 + ".iram0.text": 62, + "ram_st_total": 62, + "flash_total": 62 }, "libhal.a:state_asm--save_extra_nw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 62, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 62 - }, - "libdriver.a:uart.o": { - "data": 8, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 38, - "flash_rodata": 0, - "total": 58 + ".iram0.text": 62, + "ram_st_total": 62, + "flash_total": 62 }, "libstdc++.a:new_opv.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 56, - "total": 56 + "ram_st_total": 0, + ".flash.rodata": 56, + "flash_total": 56 + }, + "liblwip.a:ip.o": { + ".dram0.bss": 60, + "ram_st_total": 60, + ".flash.text": 50, + "flash_total": 50 + }, + "libdriver.a:uart.o": { + ".dram0.data": 8, + ".dram0.bss": 12, + "ram_st_total": 20, + ".flash.text": 38, + "flash_total": 46 }, "libfreertos.a:xtensa_vector_defaults.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 46, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 46 + ".iram0.text": 46, + "ram_st_total": 46, + "flash_total": 46 }, "libc.a:lib_a-fseek.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 45, - "flash_rodata": 0, - "total": 45 + "ram_st_total": 0, + ".flash.text": 45, + "flash_total": 45 }, "libgcc.a:_divdi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_moddi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_udivdi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_umoddi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libstdc++.a:new_op.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libfreertos.a:xtensa_init.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 32, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 36 + ".dram0.bss": 4, + ".iram0.text": 32, + "ram_st_total": 36, + "flash_total": 32 }, "libhal.a:interrupts--intlevel.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 32, - "total": 32 + "ram_st_total": 0, + ".flash.rodata": 32, + "flash_total": 32 }, "liblwip.a:init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 27, - "flash_rodata": 0, - "total": 27 + "ram_st_total": 0, + ".flash.text": 27, + "flash_total": 27 }, "libesp32.a:wifi_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 17, - "flash_rodata": 9, - "total": 26 + "ram_st_total": 0, + ".flash.text": 17, + ".flash.rodata": 9, + "flash_total": 26 }, "liblwip.a:ip6_addr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 20, - "total": 20 + "ram_st_total": 0, + ".flash.rodata": 20, + "flash_total": 20 }, "libc.a:lib_a-errno.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 10, - "flash_rodata": 0, - "total": 10 + "ram_st_total": 0, + ".flash.text": 10, + "flash_total": 10 }, "libhal.a:int_asm--set_intclear.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libxtensa-debug-module.a:eri.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libcxx.a:cxx_exception_stubs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 6, - "flash_rodata": 0, - "total": 6 + "ram_st_total": 0, + ".flash.text": 6, + "flash_total": 6 }, "libcxx.a:cxx_guards.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 5, - "flash_rodata": 0, - "total": 5 + "ram_st_total": 0, + ".flash.text": 5, + "flash_total": 5 }, "libfreertos.a:FreeRTOS-openocd.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "libstdc++.a:eh_term_handler.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "libstdc++.a:eh_unex_handler.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "libbootloader_support.a:bootloader_flash.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_sha.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:esp_image_format.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fputs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-snprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strerror.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-sysgettod.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-u_strerr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-vsnprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-xpg_strerror_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_api.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_arbit.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_core.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_dbg.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_hw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_param.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcoexist.a:coexist_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libcore.a:misc_nvs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libdriver.a:gpio.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:ets_timer_legacy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:event_default_handlers.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:event_loop.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:lib_printf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:phy_init.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:sha.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:wifi_os_adapter.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libethernet.a:emac_dev.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libethernet.a:emac_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libfreertos.a:event_groups.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libfreertos.a:ringbuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_addsubdf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_cmpdf2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_divdf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_divsf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_extendsfdf2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_fixdfsi.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatdidf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatdisf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatsidf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_muldf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_popcountsi2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "liblwip.a:ethernetif.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "liblwip.a:ethip6.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "liblwip.a:wlanif.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedtls.a:esp_sha256.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_common.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_config.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_parent.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_route.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_schedule.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_utilities.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmesh.a:mesh_wifi.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_action.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_action_vendor.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_api.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto_ccmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto_tkip.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_crypto_wep.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_debug.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ets.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_hostap.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ht.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ie_vendor.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_input.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_ioctl.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_mesh_quick.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_misc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_nvs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_output.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_phy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_power.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_proto.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_regdomain.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_rfid.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_scan.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_sta.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:ieee80211_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:wl_chm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnet80211.a:wl_cnx.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_api.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_item_hash_list.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_page.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_pagemanager.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_storage.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libnvs_flash.a:nvs_types.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy_chip_v7.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy_chip_v7_ana.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libphy.a:phy_chip_v7_cal.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:esf_buf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:if_hwctrl.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:lmac.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pm_for_bcn_only_mode.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pp_debug.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:pp_timer.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:rate_control.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:trc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libpp.a:wdev.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:bt_bb.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:pm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:rtc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "librtc.a:rtc_analog.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsmartconfig_ack.a:smartconfig_ack.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc.a:gpio_periph.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc.a:rtc_sleep.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:bad_alloc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:del_op.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:del_opv.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:eh_exception.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:new_handler.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:pure.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libstdc++.a:tinfo.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:ap_config.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:common.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_auth.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_auth_ie.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_common.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_debug.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_ie.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpa_main.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpabuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa.a:wpas_glue.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa2.a:wpa2_internal.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa_supplicant.a:os_xtensa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwps.a:wps_internal.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 } }, "reference": { "libc.a:lib_a-vfprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 13681, - "flash_rodata": 752, - "total": 14433 + "ram_st_total": 0, + ".flash.text": 13681, + ".flash.rodata": 700, + "flash_total": 14381 }, "libc.a:lib_a-svfprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 13290, - "flash_rodata": 752, - "total": 14042 + "ram_st_total": 0, + ".flash.text": 13290, + ".flash.rodata": 752, + "flash_total": 14042 }, "libc.a:lib_a-svfiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 9623, - "flash_rodata": 1206, - "total": 10829 + "ram_st_total": 0, + ".flash.text": 9623, + ".flash.rodata": 1172, + "flash_total": 10795 }, "libc.a:lib_a-vfiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 9933, - "flash_rodata": 734, - "total": 10667 + "ram_st_total": 0, + ".flash.text": 9933, + ".flash.rodata": 700, + "flash_total": 10633 }, "libfreertos.a:tasks.c.o": { - "data": 12, - "bss": 700, - "other": 0, - "iram": 5737, - "diram": 0, - "flash_text": 0, - "flash_rodata": 663, - "total": 7112 + ".dram0.data": 12, + ".dram0.bss": 700, + ".iram0.text": 5737, + "ram_st_total": 6449, + ".flash.rodata": 451, + "flash_total": 6200 }, "libesp_common.a:esp_err_to_name.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 53, - "flash_rodata": 5101, - "total": 5154 + "ram_st_total": 0, + ".flash.text": 53, + ".flash.rodata": 5101, + "flash_total": 5154 }, "libvfs.a:vfs_uart.c.o": { - "data": 116, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3758, - "flash_rodata": 783, - "total": 4665 + ".dram0.data": 116, + ".dram0.bss": 8, + "ram_st_total": 124, + ".flash.text": 3758, + ".flash.rodata": 783, + "flash_total": 4657 }, "libesp32.a:panic.c.o": { - "data": 2029, - "bss": 5, - "other": 0, - "iram": 2223, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4257 + ".dram0.data": 2029, + ".dram0.bss": 5, + ".iram0.text": 2223, + "ram_st_total": 4257, + "flash_total": 4252 }, "libfreertos.a:portasm.S.o": { - "data": 3084, - "bss": 0, - "other": 0, - "iram": 476, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 3560 + ".dram0.data": 3084, + ".iram0.text": 476, + "ram_st_total": 3560, + "flash_total": 3560 }, "libc.a:lib_a-dtoa.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 3524, - "flash_rodata": 13, - "total": 3537 + "ram_st_total": 0, + ".flash.text": 3524, + ".flash.rodata": 13, + "flash_total": 3537 }, "libesp32.a:intr_alloc.c.o": { - "data": 8, - "bss": 22, - "other": 0, - "iram": 656, - "diram": 0, - "flash_text": 1681, - "flash_rodata": 704, - "total": 3071 + ".dram0.data": 8, + ".dram0.bss": 22, + ".iram0.text": 656, + "ram_st_total": 686, + ".flash.text": 1681, + ".flash.rodata": 704, + "flash_total": 3049 }, "libfreertos.a:queue.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 2411, - "diram": 0, - "flash_text": 0, - "flash_rodata": 424, - "total": 2835 + ".iram0.text": 2411, + "ram_st_total": 2411, + ".flash.rodata": 366, + "flash_total": 2777 }, "libdriver.a:uart.c.o": { - "data": 56, - "bss": 12, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2099, - "flash_rodata": 452, - "total": 2619 + ".dram0.data": 56, + ".dram0.bss": 12, + "ram_st_total": 68, + ".flash.text": 2099, + ".flash.rodata": 452, + "flash_total": 2607 }, "libheap.a:multi_heap.c.o": { - "data": 300, - "bss": 0, - "other": 0, - "iram": 2245, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 2545 + ".dram0.data": 300, + ".iram0.text": 2245, + "ram_st_total": 2545, + "flash_total": 2545 }, "libc.a:lib_a-mprec.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 2140, - "flash_rodata": 296, - "total": 2436 + "ram_st_total": 0, + ".flash.text": 2140, + ".flash.rodata": 296, + "flash_total": 2436 }, "libesp32.a:cpu_start.c.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 1067, - "diram": 0, - "flash_text": 255, - "flash_rodata": 1073, - "total": 2396 + ".dram0.bss": 1, + ".iram0.text": 1067, + "ram_st_total": 1068, + ".flash.text": 255, + ".flash.rodata": 1073, + "flash_total": 2395 }, "libsoc.a:rtc_clk.c.o": { - "data": 160, - "bss": 4, - "other": 0, - "iram": 2104, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 2268 + ".dram0.data": 160, + ".dram0.bss": 4, + ".iram0.text": 2104, + "ram_st_total": 2268, + "flash_total": 2264 }, "libvfs.a:vfs.c.o": { - "data": 192, - "bss": 40, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1892, - "flash_rodata": 132, - "total": 2256 + ".dram0.data": 192, + ".dram0.bss": 40, + "ram_st_total": 232, + ".flash.text": 1892, + ".flash.rodata": 132, + "flash_total": 2216 }, "libdriver.a:gpio.c.o": { - "data": 32, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1193, - "flash_rodata": 970, - "total": 2195 - }, - "libspi_flash.a:flash_mmap.c.o": { - "data": 0, - "bss": 264, - "other": 0, - "iram": 1320, - "diram": 0, - "flash_text": 125, - "flash_rodata": 296, - "total": 2005 + ".dram0.data": 32, + "ram_st_total": 32, + ".flash.text": 1193, + ".flash.rodata": 970, + "flash_total": 2195 }, "libsoc.a:spi_flash_hal_iram.c.o": { - "data": 24, - "bss": 0, - "other": 0, - "iram": 1798, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1822 + ".dram0.data": 24, + ".iram0.text": 1798, + "ram_st_total": 1822, + "flash_total": 1822 }, "libfreertos.a:xtensa_vectors.S.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 1769, - "diram": 0, - "flash_text": 0, - "flash_rodata": 36, - "total": 1813 + ".dram0.data": 8, + ".iram0.text": 1344, + ".iram0.vectors": 425, + "ram_st_total": 1777, + ".flash.rodata": 36, + "flash_total": 1813 }, "libesp32.a:task_wdt.c.o": { - "data": 53, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 1223, - "flash_rodata": 494, - "total": 1774 + ".dram0.data": 53, + ".dram0.bss": 4, + "ram_st_total": 57, + ".flash.text": 1223, + ".flash.rodata": 494, + "flash_total": 1770 }, "libspi_flash.a:spi_flash_chip_generic.c.o": { - "data": 340, - "bss": 0, - "other": 0, - "iram": 1423, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1763 + ".dram0.data": 340, + ".iram0.text": 1423, + "ram_st_total": 1763, + "flash_total": 1763 + }, + "libspi_flash.a:flash_mmap.c.o": { + ".dram0.bss": 264, + ".iram0.text": 1320, + "ram_st_total": 1584, + ".flash.text": 125, + ".flash.rodata": 296, + "flash_total": 1741 }, "libspi_flash.a:cache_utils.c.o": { - "data": 4, - "bss": 14, - "other": 0, - "iram": 833, - "diram": 0, - "flash_text": 81, - "flash_rodata": 430, - "total": 1362 + ".dram0.data": 4, + ".dram0.bss": 14, + ".iram0.text": 833, + "ram_st_total": 851, + ".flash.text": 81, + ".flash.rodata": 430, + "flash_total": 1348 }, "libheap.a:heap_caps.c.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 884, - "diram": 0, - "flash_text": 50, - "flash_rodata": 362, - "total": 1300 + ".dram0.data": 4, + ".iram0.text": 884, + "ram_st_total": 888, + ".flash.text": 50, + ".flash.rodata": 362, + "flash_total": 1300 }, "libfreertos.a:timers.c.o": { - "data": 8, - "bss": 56, - "other": 0, - "iram": 1007, - "diram": 0, - "flash_text": 0, - "flash_rodata": 223, - "total": 1294 + ".dram0.data": 8, + ".dram0.bss": 56, + ".iram0.text": 1007, + "ram_st_total": 1071, + ".flash.rodata": 223, + "flash_total": 1238 }, "libesp_timer.a:esp_timer_impl_lac.c.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 514, - "diram": 0, - "flash_text": 322, - "flash_rodata": 389, - "total": 1241 + ".dram0.data": 8, + ".dram0.bss": 8, + ".iram0.text": 514, + "ram_st_total": 530, + ".flash.text": 322, + ".flash.rodata": 389, + "flash_total": 1233 }, "libheap.a:heap_caps_init.c.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 834, - "flash_rodata": 379, - "total": 1217 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 834, + ".flash.rodata": 379, + "flash_total": 1213 }, "libsoc.a:soc_memory_layout.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 1197, - "total": 1197 + "ram_st_total": 0, + ".flash.rodata": 1197, + "flash_total": 1197 }, "libdriver.a:periph_ctrl.c.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 696, - "flash_rodata": 488, - "total": 1192 + ".dram0.data": 8, + "ram_st_total": 8, + ".flash.text": 696, + ".flash.rodata": 488, + "flash_total": 1192 }, "libfreertos.a:port.c.o": { - "data": 0, - "bss": 32, - "other": 0, - "iram": 737, - "diram": 0, - "flash_text": 0, - "flash_rodata": 340, - "total": 1109 + ".dram0.bss": 32, + ".iram0.text": 737, + "ram_st_total": 769, + ".flash.rodata": 340, + "flash_total": 1077 }, "libfreertos.a:xtensa_intr_asm.S.o": { - "data": 1024, - "bss": 0, - "other": 0, - "iram": 51, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 1075 + ".dram0.data": 1024, + ".iram0.text": 51, + "ram_st_total": 1075, + "flash_total": 1075 }, "libbootloader_support.a:bootloader_flash_config_esp32.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 1028, - "diram": 0, - "flash_text": 17, - "flash_rodata": 0, - "total": 1045 + ".iram0.text": 1028, + "ram_st_total": 1028, + ".flash.text": 17, + "flash_total": 1045 }, "libsoc.a:rtc_time.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 819, - "diram": 0, - "flash_text": 0, - "flash_rodata": 194, - "total": 1013 + ".iram0.text": 819, + "ram_st_total": 819, + ".flash.rodata": 194, + "flash_total": 1013 }, "libesp_ringbuf.a:ringbuf.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 858, - "diram": 0, - "flash_text": 0, - "flash_rodata": 150, - "total": 1008 + ".iram0.text": 858, + "ram_st_total": 858, + ".flash.rodata": 150, + "flash_total": 1008 }, "libsoc.a:rtc_init.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 956, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 956 - }, - "liblog.a:log.c.o": { - "data": 8, - "bss": 264, - "other": 0, - "iram": 34, - "diram": 0, - "flash_text": 484, - "flash_rodata": 147, - "total": 937 + ".iram0.text": 956, + "ram_st_total": 956, + "flash_total": 956 }, "libc.a:lib_a-fseeko.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 918, - "flash_rodata": 0, - "total": 918 - }, - "libnewlib.a:time.c.o": { - "data": 0, - "bss": 32, - "other": 0, - "iram": 123, - "diram": 0, - "flash_text": 719, - "flash_rodata": 0, - "total": 874 + "ram_st_total": 0, + ".flash.text": 918, + "flash_total": 918 }, "libspi_flash.a:esp_flash_api.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 600, - "diram": 0, - "flash_text": 16, - "flash_rodata": 244, - "total": 860 - }, - "libspi_flash.a:partition.c.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 668, - "flash_rodata": 181, - "total": 857 + ".iram0.text": 600, + "ram_st_total": 600, + ".flash.text": 16, + ".flash.rodata": 244, + "flash_total": 860 }, "libesp32.a:clk.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 64, - "diram": 0, - "flash_text": 582, - "flash_rodata": 208, - "total": 854 + ".iram0.text": 64, + "ram_st_total": 64, + ".flash.text": 582, + ".flash.rodata": 208, + "flash_total": 854 }, - "libesp_timer.a:esp_timer.c.o": { - "data": 8, - "bss": 12, - "other": 0, - "iram": 280, - "diram": 0, - "flash_text": 401, - "flash_rodata": 118, - "total": 819 + "libspi_flash.a:partition.c.o": { + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 668, + ".flash.rodata": 181, + "flash_total": 849 + }, + "libnewlib.a:time.c.o": { + ".dram0.bss": 32, + ".iram0.text": 123, + "ram_st_total": 155, + ".flash.text": 719, + "flash_total": 842 }, "libsoc.a:memory_layout_utils.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 505, - "flash_rodata": 295, - "total": 800 + "ram_st_total": 0, + ".flash.text": 505, + ".flash.rodata": 295, + "flash_total": 800 }, "libsoc.a:rtc_wdt.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 796, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 796 + ".iram0.text": 796, + "ram_st_total": 796, + "flash_total": 796 + }, + "libesp_timer.a:esp_timer.c.o": { + ".dram0.data": 8, + ".dram0.bss": 12, + ".iram0.text": 280, + "ram_st_total": 300, + ".flash.text": 401, + ".flash.rodata": 104, + "flash_total": 793 }, "libesp32.a:dport_access.c.o": { - "data": 8, - "bss": 40, - "other": 0, - "iram": 422, - "diram": 0, - "flash_text": 189, - "flash_rodata": 126, - "total": 785 + ".dram0.data": 8, + ".dram0.bss": 40, + ".iram0.text": 422, + "ram_st_total": 470, + ".flash.text": 189, + ".flash.rodata": 126, + "flash_total": 745 }, "libesp_common.a:ipc.c.o": { - "data": 0, - "bss": 56, - "other": 0, - "iram": 192, - "diram": 0, - "flash_text": 367, - "flash_rodata": 117, - "total": 732 + ".dram0.bss": 56, + ".iram0.text": 192, + "ram_st_total": 248, + ".flash.text": 367, + ".flash.rodata": 117, + "flash_total": 676 + }, + "liblog.a:log.c.o": { + ".dram0.data": 8, + ".dram0.bss": 264, + ".iram0.text": 34, + "ram_st_total": 306, + ".flash.text": 484, + ".flash.rodata": 147, + "flash_total": 673 }, "libnewlib.a:locks.c.o": { - "data": 8, - "bss": 0, - "other": 0, - "iram": 487, - "diram": 0, - "flash_text": 5, - "flash_rodata": 84, - "total": 584 + ".dram0.data": 8, + ".iram0.text": 487, + "ram_st_total": 495, + ".flash.text": 5, + ".flash.rodata": 84, + "flash_total": 584 }, "libspi_flash.a:esp_flash_spi_init.c.o": { - "data": 120, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 191, - "flash_rodata": 261, - "total": 576 + ".dram0.data": 120, + ".dram0.bss": 4, + "ram_st_total": 124, + ".flash.text": 191, + ".flash.rodata": 261, + "flash_total": 572 }, "libsoc.a:uart_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 493, - "flash_rodata": 0, - "total": 493 - }, - "libesp32.a:crosscore_int.c.o": { - "data": 8, - "bss": 8, - "other": 0, - "iram": 195, - "diram": 0, - "flash_text": 134, - "flash_rodata": 146, - "total": 491 + "ram_st_total": 0, + ".flash.text": 493, + "flash_total": 493 }, "libbootloader_support.a:flash_qio_mode.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 490, - "flash_rodata": 0, - "total": 490 + "ram_st_total": 0, + ".flash.text": 490, + "flash_total": 490 }, - "libnewlib.a:syscall_table.c.o": { - "data": 144, - "bss": 240, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 82, - "flash_rodata": 0, - "total": 466 + "libesp32.a:crosscore_int.c.o": { + ".dram0.data": 8, + ".dram0.bss": 8, + ".iram0.text": 195, + "ram_st_total": 211, + ".flash.text": 134, + ".flash.rodata": 146, + "flash_total": 483 }, "libesp32.a:int_wdt.c.o": { - "data": 0, - "bss": 1, - "other": 0, - "iram": 94, - "diram": 0, - "flash_text": 341, - "flash_rodata": 0, - "total": 436 + ".dram0.bss": 1, + ".iram0.text": 94, + "ram_st_total": 95, + ".flash.text": 341, + "flash_total": 435 }, "libesp32.a:system_api_esp32.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 435, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 435 - }, - "libesp_common.a:freertos_hooks.c.o": { - "data": 8, - "bss": 128, - "other": 0, - "iram": 47, - "diram": 0, - "flash_text": 243, - "flash_rodata": 0, - "total": 426 + ".iram0.text": 435, + "ram_st_total": 435, + "flash_total": 435 }, "libapp_update.a:esp_app_desc.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 109, - "diram": 0, - "flash_text": 12, - "flash_rodata": 256, - "total": 377 + ".iram0.text": 109, + "ram_st_total": 109, + ".flash.text": 12, + ".flash.rodata": 256, + "flash_total": 377 }, "libc.a:lib_a-locale.o": { - "data": 364, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 10, - "total": 374 + ".dram0.data": 364, + "ram_st_total": 364, + ".flash.rodata": 10, + "flash_total": 374 }, "libsoc.a:uart_hal_iram.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 147, - "flash_rodata": 222, - "total": 369 + "ram_st_total": 0, + ".flash.text": 147, + ".flash.rodata": 222, + "flash_total": 369 }, "libfreertos.a:xtensa_context.S.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 367, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 367 + ".iram0.text": 367, + "ram_st_total": 367, + "flash_total": 367 }, "libapp_update.a:esp_ota_ops.c.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 147, - "flash_rodata": 214, - "total": 365 + ".dram0.bss": 4, + "ram_st_total": 4, + ".flash.text": 147, + ".flash.rodata": 214, + "flash_total": 361 }, "libsoc.a:spi_flash_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 302, - "flash_rodata": 48, - "total": 350 + "ram_st_total": 0, + ".flash.text": 302, + ".flash.rodata": 48, + "flash_total": 350 }, "libesp_common.a:brownout.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 120, - "flash_rodata": 203, - "total": 323 + "ram_st_total": 0, + ".flash.text": 120, + ".flash.rodata": 203, + "flash_total": 323 }, "libhal.a:windowspill_asm.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 315, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 315 + ".iram0.text": 315, + "ram_st_total": 315, + "flash_total": 315 }, - "libc.a:lib_a-puts.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 234, - "flash_rodata": 60, - "total": 294 + "libesp_common.a:freertos_hooks.c.o": { + ".dram0.data": 8, + ".dram0.bss": 128, + ".iram0.text": 47, + "ram_st_total": 183, + ".flash.text": 243, + "flash_total": 298 }, "libspi_flash.a:spi_flash_chip_gd.c.o": { - "data": 95, - "bss": 0, - "other": 0, - "iram": 181, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 276 + ".dram0.data": 95, + ".iram0.text": 181, + "ram_st_total": 276, + "flash_total": 276 }, "libsoc.a:brownout_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 269, - "flash_rodata": 0, - "total": 269 + "ram_st_total": 0, + ".flash.text": 269, + "flash_total": 269 }, "libesp32.a:dport_panic_highint_hdl.S.o": { - "data": 12, - "bss": 0, - "other": 0, - "iram": 250, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 262 + ".dram0.data": 12, + ".iram0.text": 250, + "ram_st_total": 262, + "flash_total": 262 }, "libsoc.a:soc_hal.c.o": { - "data": 24, - "bss": 0, - "other": 0, - "iram": 234, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 258 - }, - "libdriver.a:rtc_module.c.o": { - "data": 16, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 231, - "flash_rodata": 0, - "total": 255 + ".dram0.data": 24, + ".iram0.text": 234, + "ram_st_total": 258, + "flash_total": 258 }, "libspi_flash.a:memspi_host_driver.c.o": { - "data": 43, - "bss": 0, - "other": 0, - "iram": 206, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 249 + ".dram0.data": 43, + ".iram0.text": 206, + "ram_st_total": 249, + "flash_total": 249 + }, + "libdriver.a:rtc_module.c.o": { + ".dram0.data": 16, + ".dram0.bss": 8, + "ram_st_total": 24, + ".flash.text": 231, + "flash_total": 247 }, "libc.a:lib_a-fopen.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 244, - "flash_rodata": 0, - "total": 244 + "ram_st_total": 0, + ".flash.text": 244, + "flash_total": 244 }, "libc.a:lib_a-reent.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 236, - "flash_rodata": 0, - "total": 236 + "ram_st_total": 0, + ".flash.text": 236, + "flash_total": 236 + }, + "libc.a:lib_a-puts.o": { + "ram_st_total": 0, + ".flash.text": 234, + ".flash.rodata": 0, + "flash_total": 234 + }, + "libnewlib.a:syscall_table.c.o": { + ".dram0.data": 144, + ".dram0.bss": 240, + "ram_st_total": 384, + ".flash.text": 82, + "flash_total": 226 }, "libc.a:lib_a-snprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 217, - "flash_rodata": 0, - "total": 217 + "ram_st_total": 0, + ".flash.text": 217, + "flash_total": 217 }, "libxtensa.a:debug_helpers.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 217, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 217 + ".iram0.text": 217, + "ram_st_total": 217, + "flash_total": 217 }, "libspi_flash.a:spi_flash_chip_issi.c.o": { - "data": 97, - "bss": 0, - "other": 0, - "iram": 101, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 198 - }, - "liblog.a:log_freertos.c.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 188, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 196 + ".dram0.data": 97, + ".iram0.text": 101, + "ram_st_total": 198, + "flash_total": 198 }, "libpthread.a:pthread_local_storage.c.o": { - "data": 8, - "bss": 4, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 183, - "flash_rodata": 0, - "total": 195 + ".dram0.data": 8, + ".dram0.bss": 4, + "ram_st_total": 12, + ".flash.text": 183, + "flash_total": 191 + }, + "liblog.a:log_freertos.c.o": { + ".dram0.bss": 8, + ".iram0.text": 188, + "ram_st_total": 196, + "flash_total": 188 }, "libsoc_esp32.a:gpio_periph.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 160, - "total": 160 + "ram_st_total": 0, + ".flash.rodata": 160, + "flash_total": 160 }, "libesp32.a:cache_err_int.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 56, - "diram": 0, - "flash_text": 98, - "flash_rodata": 0, - "total": 154 + ".iram0.text": 56, + "ram_st_total": 56, + ".flash.text": 98, + "flash_total": 154 }, "libnewlib.a:heap.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 151, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 151 + ".iram0.text": 151, + "ram_st_total": 151, + "flash_total": 151 }, "libfreertos.a:xtensa_intr.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 113, - "diram": 0, - "flash_text": 0, - "flash_rodata": 35, - "total": 148 + ".iram0.text": 113, + "ram_st_total": 113, + ".flash.rodata": 35, + "flash_total": 148 }, "libspi_flash.a:spi_flash_os_func_noos.c.o": { - "data": 16, - "bss": 0, - "other": 0, - "iram": 127, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 143 + ".dram0.data": 16, + ".iram0.text": 127, + "ram_st_total": 143, + "flash_total": 143 }, "libspi_flash.a:spi_flash_os_func_app.c.o": { - "data": 24, - "bss": 0, - "other": 0, - "iram": 91, - "diram": 0, - "flash_text": 25, - "flash_rodata": 0, - "total": 140 + ".dram0.data": 24, + ".iram0.text": 91, + "ram_st_total": 115, + ".flash.text": 25, + "flash_total": 140 }, "libfreertos.a:list.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 138, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 138 + ".iram0.text": 138, + "ram_st_total": 138, + "flash_total": 138 }, "libc.a:lib_a-assert.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 68, - "flash_rodata": 60, - "total": 128 + "ram_st_total": 0, + ".flash.text": 68, + ".flash.rodata": 60, + "flash_total": 128 }, "libc.a:lib_a-flags.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 128, - "flash_rodata": 0, - "total": 128 + "ram_st_total": 0, + ".flash.text": 128, + "flash_total": 128 }, "libmain.a:blink.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 72, - "flash_rodata": 39, - "total": 111 + "ram_st_total": 0, + ".flash.text": 72, + ".flash.rodata": 39, + "flash_total": 111 }, "libc.a:lib_a-s_frexp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 100, - "flash_rodata": 0, - "total": 100 + "ram_st_total": 0, + ".flash.text": 100, + "flash_total": 100 }, "libc.a:lib_a-vprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 94, - "flash_rodata": 0, - "total": 94 - }, - "libpthread.a:pthread.c.o": { - "data": 0, - "bss": 8, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 81, - "flash_rodata": 0, - "total": 89 + "ram_st_total": 0, + ".flash.text": 94, + "flash_total": 94 }, "libc.a:lib_a-fiprintf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 84, - "flash_rodata": 0, - "total": 84 + "ram_st_total": 0, + ".flash.text": 84, + "flash_total": 84 + }, + "libpthread.a:pthread.c.o": { + ".dram0.bss": 8, + "ram_st_total": 8, + ".flash.text": 81, + "flash_total": 81 }, "libbootloader_support.a:bootloader_mem.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 58, - "flash_rodata": 20, - "total": 78 + "ram_st_total": 0, + ".flash.text": 58, + ".flash.rodata": 20, + "flash_total": 78 }, "libsoc.a:cpu_util.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 75, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 75 + ".iram0.text": 75, + "ram_st_total": 75, + "flash_total": 75 }, "libc.a:lib_a-mbtowc_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 72, - "flash_rodata": 0, - "total": 72 - }, - "libspi_flash.a:flash_ops.c.o": { - "data": 20, - "bss": 4, - "other": 0, - "iram": 14, - "diram": 0, - "flash_text": 29, - "flash_rodata": 0, - "total": 67 + "ram_st_total": 0, + ".flash.text": 72, + "flash_total": 72 }, "libc.a:lib_a-localeconv.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 63, - "flash_rodata": 0, - "total": 63 + "ram_st_total": 0, + ".flash.text": 63, + "flash_total": 63 + }, + "libspi_flash.a:flash_ops.c.o": { + ".dram0.data": 20, + ".dram0.bss": 4, + ".iram0.text": 14, + "ram_st_total": 38, + ".flash.text": 29, + "flash_total": 63 }, "libhal.a:state_asm--restore_extra_nw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 62, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 62 + ".iram0.text": 62, + "ram_st_total": 62, + "flash_total": 62 }, "libhal.a:state_asm--save_extra_nw.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 62, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 62 + ".iram0.text": 62, + "ram_st_total": 62, + "flash_total": 62 }, "libnewlib.a:reent_init.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 59, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 59 + ".iram0.text": 59, + "ram_st_total": 59, + "flash_total": 59 }, "libdriver.a:rtc_io.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 53, - "flash_rodata": 0, - "total": 53 + "ram_st_total": 0, + ".flash.text": 53, + "flash_total": 53 }, "libnewlib.a:syscalls.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 50, - "flash_rodata": 0, - "total": 50 + "ram_st_total": 0, + ".flash.text": 50, + "flash_total": 50 }, "libsoc.a:mpu_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 47, - "flash_rodata": 0, - "total": 47 + "ram_st_total": 0, + ".flash.text": 47, + "flash_total": 47 }, "libfreertos.a:xtensa_vector_defaults.S.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 46, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 46 + ".iram0.text": 46, + "ram_st_total": 46, + "flash_total": 46 }, "libc.a:lib_a-fseek.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 45, - "flash_rodata": 0, - "total": 45 + "ram_st_total": 0, + ".flash.text": 45, + "flash_total": 45 }, "libgcc.a:_divdi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_moddi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_udivdi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libgcc.a:_umoddi3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 40, - "total": 40 + "ram_st_total": 0, + ".flash.rodata": 40, + "flash_total": 40 }, "libfreertos.a:xtensa_init.c.o": { - "data": 0, - "bss": 4, - "other": 0, - "iram": 32, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 36 + ".dram0.bss": 4, + ".iram0.text": 32, + "ram_st_total": 36, + "flash_total": 32 }, "libhal.a:interrupts--intlevel.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 32, - "total": 32 + "ram_st_total": 0, + ".flash.rodata": 32, + "flash_total": 32 }, "libspi_flash.a:spi_flash_chip_drivers.c.o": { - "data": 20, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 20 + ".dram0.data": 20, + "ram_st_total": 20, + "flash_total": 20 }, "libnewlib.a:pthread.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 12, - "flash_rodata": 0, - "total": 12 + "ram_st_total": 0, + ".flash.text": 12, + "flash_total": 12 }, "libc.a:lib_a-errno.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 10, - "flash_rodata": 0, - "total": 10 + "ram_st_total": 0, + ".flash.text": 10, + "flash_total": 10 }, "(exe):crtend.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 8, - "total": 8 + "ram_st_total": 0, + ".flash.rodata": 8, + "flash_total": 8 }, "libesp32.a:pm_esp32.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 8, - "flash_rodata": 0, - "total": 8 + "ram_st_total": 0, + ".flash.text": 8, + "flash_total": 8 }, "libhal.a:int_asm--set_intclear.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "libsoc.a:cpu_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 8, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 8 + ".iram0.text": 8, + "ram_st_total": 8, + "flash_total": 8 }, "(exe):crti.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 3, - "diram": 0, - "flash_text": 3, - "flash_rodata": 0, - "total": 6 + ".iram0.vectors": 3, + "ram_st_total": 3, + ".flash.text": 3, + "flash_total": 6 }, "libcxx.a:cxx_exception_stubs.cpp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 6, - "flash_rodata": 0, - "total": 6 + "ram_st_total": 0, + ".flash.text": 6, + "flash_total": 6 }, "libcxx.a:cxx_guards.cpp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 5, - "flash_rodata": 0, - "total": 5 + "ram_st_total": 0, + ".flash.text": 5, + "flash_total": 5 }, "(exe):crtbegin.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 4, - "total": 4 + "ram_st_total": 0, + ".flash.rodata": 4, + "flash_total": 4 }, "libfreertos.a:FreeRTOS-openocd.c.o": { - "data": 4, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 4 + ".dram0.data": 4, + "ram_st_total": 4, + "flash_total": 4 }, "(exe):crt0.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "(exe):crtn.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "(exe):project_elf_src.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_common.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_efuse_esp32.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_flash.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_random.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_sha.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:bootloader_utility.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:esp_image_format.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libbootloader_support.a:flash_partitions.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:isatty.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-bzero.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-ctype_.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-environ.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-envlock.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fclose.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fflush.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-findfp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fputs.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fputwc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fvwrite.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-fwalk.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-getenv_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-gettzinfo.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-gmtime_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-impure.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-iswspace.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-lcltime_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-makebuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-mbrtowc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-memchr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-memcmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-memcpy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-memmove.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-memset.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-month_lengths.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-printf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-putc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-putchar.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-qsort.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-refill.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-sccl.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-siscanf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-stdio.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strcmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strcpy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strcspn.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strerror.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strerror_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strlcpy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strlen.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strncmp.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strncpy.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strstr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strtol.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strtoll.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strtoul.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-strtoull.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-svfiscanf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-sysgettod.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-tzcalc_limits.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-tzlock.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-tzset.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-tzset_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-tzvars.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-u_strerr.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-ungetc.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-wbuf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-wcrtomb.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-wctomb_r.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libc.a:lib_a-wsetup.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libdriver.a:spi_common.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libefuse.a:esp_efuse_api.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libefuse.a:esp_efuse_fields.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libefuse.a:esp_efuse_table.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libefuse.a:esp_efuse_utility.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp32.a:hw_random.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp_common.a:pm_locks.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libesp_common.a:system_api.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_addsubdf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_bswapsi2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_cmpdf2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_divdf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_fixdfsi.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_floatsidf.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_muldf3.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libgcc.a:_popcountsi2.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedcrypto.a:esp_sha256.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libmbedcrypto.a:sha.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc.a:gpio_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc.a:rtc_io_hal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc_esp32.a:rtc_io_periph.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc_esp32.a:spi_periph.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libsoc_esp32.a:uart_periph.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libspi_flash.a:spi_flash_rom_patch.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libwpa_supplicant.a:md5-internal.c.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 }, "libxtensa.a:debug_helpers_asm.S.o": { - "data": 0, - "bss": 0, - "other": 0, - "iram": 0, - "diram": 0, - "flash_text": 0, - "flash_rodata": 0, - "total": 0 + "ram_st_total": 0, + "flash_total": 0 } }, "diff": { "(exe):crt0.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "(exe):crtbegin.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -4, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -4 + ".flash.rodata": -4, + "flash_total": -4, + "ram_st_total": 0 }, "(exe):crtend.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -8, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -8 + ".flash.rodata": -8, + "flash_total": -8, + "ram_st_total": 0 }, "(exe):crti.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -3, - "iram": -3, - "other": 0, - "total": -6 + ".flash.text": -3, + ".iram0.vectors": -3, + "flash_total": -6, + "ram_st_total": -3 }, "(exe):crtn.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "(exe):project_elf_src.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libapp_update.a:esp_app_desc.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -256, - "flash_text": -12, - "iram": -109, - "other": 0, - "total": -377 + ".flash.rodata": -256, + ".flash.text": -12, + ".iram0.text": -109, + "flash_total": -377, + "ram_st_total": -109 }, "libapp_update.a:esp_ota_ops.c.o": { - "bss": -4, - "data": 0, - "diram": 0, - "flash_rodata": -214, - "flash_text": -147, - "iram": 0, - "other": 0, - "total": -365 + ".dram0.bss": -4, + ".flash.rodata": -214, + ".flash.text": -147, + "flash_total": -361, + "ram_st_total": -4 }, "libapp_update.a:esp_ota_ops.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 717, - "flash_text": 123, - "iram": 0, - "other": 0, - "total": 840 + ".flash.rodata": 717, + ".flash.text": 123, + "flash_total": 840, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_common.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_efuse_esp32.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_flash.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_flash.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_flash_config_esp32.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -17, - "iram": -1028, - "other": 0, - "total": -1045 + ".flash.text": -17, + ".iram0.text": -1028, + "flash_total": -1045, + "ram_st_total": -1028 }, "libbootloader_support.a:bootloader_mem.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -20, - "flash_text": -58, - "iram": 0, - "other": 0, - "total": -78 + ".flash.rodata": -20, + ".flash.text": -58, + "flash_total": -78, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_random.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_sha.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_sha.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:bootloader_utility.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:esp_image_format.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:esp_image_format.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:flash_partitions.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libbootloader_support.a:flash_qio_mode.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -490, - "iram": 0, - "other": 0, - "total": -490 + ".flash.text": -490, + "flash_total": -490, + "ram_st_total": 0 }, "libc.a:isatty.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-assert.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.rodata": 0, + ".flash.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-bzero.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-ctype_.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-dtoa.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -2, - "iram": 0, - "other": 0, - "total": -2 + ".flash.rodata": 0, + ".flash.text": -2, + "flash_total": -2, + "ram_st_total": 0 }, "libc.a:lib_a-environ.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-envlock.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-errno.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fclose.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fflush.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-findfp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fiprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-flags.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -1, - "iram": 0, - "other": 0, - "total": -1 + ".flash.text": -1, + "flash_total": -1, + "ram_st_total": 0 }, "libc.a:lib_a-fopen.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -16, - "iram": 0, - "other": 0, - "total": -16 + ".flash.text": -16, + "flash_total": -16, + "ram_st_total": 0 }, "libc.a:lib_a-fputs.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fputwc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fseek.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fseeko.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -56, - "iram": 0, - "other": 0, - "total": -56 + ".flash.text": -56, + "flash_total": -56, + "ram_st_total": 0 }, "libc.a:lib_a-fvwrite.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-fwalk.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-getenv_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-gettzinfo.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-gmtime_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-impure.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-iswspace.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-lcltime_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-locale.o": { - "bss": 0, - "data": -364, - "diram": 0, - "flash_rodata": -10, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -374 + ".dram0.data": -364, + ".flash.rodata": -10, + "flash_total": -374, + "ram_st_total": -364 }, "libc.a:lib_a-localeconv.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -63, - "iram": 0, - "other": 0, - "total": -63 + ".flash.text": -63, + "flash_total": -63, + "ram_st_total": 0 }, "libc.a:lib_a-makebuf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-mbrtowc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-mbtowc_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -72, - "iram": 0, - "other": 0, - "total": -72 + ".flash.text": -72, + "flash_total": -72, + "ram_st_total": 0 }, "libc.a:lib_a-memchr.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-memcmp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-memcpy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-memmove.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-memset.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-month_lengths.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-mprec.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -6, - "iram": 0, - "other": 0, - "total": -6 + ".flash.rodata": 0, + ".flash.text": -6, + "flash_total": -6, + "ram_st_total": 0 }, "libc.a:lib_a-printf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 116, - "iram": 0, - "other": 0, - "total": 116 + ".flash.text": 116, + "flash_total": 116, + "ram_st_total": 0 }, "libc.a:lib_a-putc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-putchar.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-puts.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -52, - "iram": 0, - "other": 0, - "total": -52 + ".flash.rodata": 0, + ".flash.text": -52, + "flash_total": -52, + "ram_st_total": 0 }, "libc.a:lib_a-qsort.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-reent.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -4, - "iram": 0, - "other": 0, - "total": -4 + ".flash.text": -4, + "flash_total": -4, + "ram_st_total": 0 }, "libc.a:lib_a-refill.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-s_frexp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 10, - "iram": 0, - "other": 0, - "total": 10 + ".flash.text": 10, + "flash_total": 10, + "ram_st_total": 0 }, "libc.a:lib_a-sccl.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-siscanf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-snprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -217, - "iram": 0, - "other": 0, - "total": -217 + ".flash.text": -217, + "flash_total": -217, + "ram_st_total": 0 }, "libc.a:lib_a-sprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 167, - "iram": 0, - "other": 0, - "total": 167 + ".flash.text": 167, + "flash_total": 167, + "ram_st_total": 0 }, "libc.a:lib_a-stdio.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strcmp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strcpy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strcspn.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strerror.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strerror_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strlcpy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strlen.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strncmp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strncpy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strstr.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strtol.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strtoll.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strtoul.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-strtoull.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-svfiprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 4, - "flash_text": 19, - "iram": 0, - "other": 0, - "total": 23 + ".flash.rodata": 4, + ".flash.text": 19, + "flash_total": 23, + "ram_st_total": 0 }, "libc.a:lib_a-svfiscanf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-svfprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 4, - "flash_text": 544, - "iram": 0, - "other": 0, - "total": 548 + ".flash.rodata": 4, + ".flash.text": 544, + "flash_total": 548, + "ram_st_total": 0 }, "libc.a:lib_a-sysgettod.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-tzcalc_limits.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-tzlock.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-tzset.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-tzset_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-tzvars.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-u_strerr.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-ungetc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-vfiprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 4, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 4 + ".flash.rodata": 4, + ".flash.text": 0, + "flash_total": 4, + "ram_st_total": 0 }, "libc.a:lib_a-vfprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 4, - "flash_text": 512, - "iram": 0, - "other": 0, - "total": 516 + ".flash.rodata": 4, + ".flash.text": 512, + "flash_total": 516, + "ram_st_total": 0 }, "libc.a:lib_a-vprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-vsnprintf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-wbuf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-wcrtomb.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-wctomb_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-wsetup.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libc.a:lib_a-xpg_strerror_r.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_api.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_arbit.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_core.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_dbg.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_hw.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_param.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcoexist.a:coexist_timer.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcore.a:misc_nvs.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libcxx.a:cxx_exception_stubs.cpp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -6, - "iram": 0, - "other": 0, - "total": -6 + ".flash.text": -6, + "flash_total": -6, + "ram_st_total": 0 }, "libcxx.a:cxx_exception_stubs.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 6, - "iram": 0, - "other": 0, - "total": 6 + ".flash.text": 6, + "flash_total": 6, + "ram_st_total": 0 }, "libcxx.a:cxx_guards.cpp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -5, - "iram": 0, - "other": 0, - "total": -5 + ".flash.text": -5, + "flash_total": -5, + "ram_st_total": 0 }, "libcxx.a:cxx_guards.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 5, - "iram": 0, - "other": 0, - "total": 5 + ".flash.text": 5, + "flash_total": 5, + "ram_st_total": 0 }, "libdriver.a:gpio.c.o": { - "bss": 0, - "data": -32, - "diram": 0, - "flash_rodata": -970, - "flash_text": -1193, - "iram": 0, - "other": 0, - "total": -2195 + ".dram0.data": -32, + ".flash.rodata": -970, + ".flash.text": -1193, + "flash_total": -2195, + "ram_st_total": -32 }, "libdriver.a:gpio.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libdriver.a:periph_ctrl.c.o": { - "bss": 0, - "data": -8, - "diram": 0, - "flash_rodata": -488, - "flash_text": -696, - "iram": 0, - "other": 0, - "total": -1192 + ".dram0.data": -8, + ".flash.rodata": -488, + ".flash.text": -696, + "flash_total": -1192, + "ram_st_total": -8 }, "libdriver.a:periph_ctrl.o": { - "bss": 0, - "data": 8, - "diram": 0, - "flash_rodata": 256, - "flash_text": 520, - "iram": 0, - "other": 0, - "total": 784 + ".dram0.data": 8, + ".flash.rodata": 256, + ".flash.text": 520, + "flash_total": 784, + "ram_st_total": 8 }, "libdriver.a:rtc_io.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -53, - "iram": 0, - "other": 0, - "total": -53 + ".flash.text": -53, + "flash_total": -53, + "ram_st_total": 0 }, "libdriver.a:rtc_module.c.o": { - "bss": -8, - "data": -16, - "diram": 0, - "flash_rodata": 0, - "flash_text": -231, - "iram": 0, - "other": 0, - "total": -255 + ".dram0.bss": -8, + ".dram0.data": -16, + ".flash.text": -231, + "flash_total": -247, + "ram_st_total": -24 }, "libdriver.a:rtc_module.o": { - "bss": 8, - "data": 8, - "diram": 0, - "flash_rodata": 0, - "flash_text": 291, - "iram": 0, - "other": 0, - "total": 307 + ".dram0.bss": 8, + ".dram0.data": 8, + ".flash.text": 291, + "flash_total": 299, + "ram_st_total": 16 }, "libdriver.a:spi_common.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libdriver.a:timer.o": { - "bss": 0, - "data": 16, - "diram": 0, - "flash_rodata": 281, - "flash_text": 112, - "iram": 0, - "other": 0, - "total": 409 + ".dram0.data": 16, + ".flash.rodata": 281, + ".flash.text": 112, + "flash_total": 409, + "ram_st_total": 16 }, "libdriver.a:uart.c.o": { - "bss": -12, - "data": -56, - "diram": 0, - "flash_rodata": -452, - "flash_text": -2099, - "iram": 0, - "other": 0, - "total": -2619 + ".dram0.bss": -12, + ".dram0.data": -56, + ".flash.rodata": -452, + ".flash.text": -2099, + "flash_total": -2607, + "ram_st_total": -68 }, "libdriver.a:uart.o": { - "bss": 12, - "data": 8, - "diram": 0, - "flash_rodata": 0, - "flash_text": 38, - "iram": 0, - "other": 0, - "total": 58 + ".dram0.bss": 12, + ".dram0.data": 8, + ".flash.text": 38, + "flash_total": 46, + "ram_st_total": 20 }, "libefuse.a:esp_efuse_api.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libefuse.a:esp_efuse_fields.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libefuse.a:esp_efuse_table.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libefuse.a:esp_efuse_utility.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:brownout.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 191, - "flash_text": 145, - "iram": 0, - "other": 0, - "total": 336 + ".flash.rodata": 191, + ".flash.text": 145, + "flash_total": 336, + "ram_st_total": 0 }, "libesp32.a:cache_err_int.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -98, - "iram": -56, - "other": 0, - "total": -154 + ".flash.text": -98, + ".iram0.text": -56, + "flash_total": -154, + "ram_st_total": -56 }, "libesp32.a:cache_err_int.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 98, - "iram": 56, - "other": 0, - "total": 154 + ".flash.text": 98, + ".iram0.text": 56, + "flash_total": 154, + "ram_st_total": 56 }, "libesp32.a:clk.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -208, - "flash_text": -582, - "iram": -64, - "other": 0, - "total": -854 + ".flash.rodata": -208, + ".flash.text": -582, + ".iram0.text": -64, + "flash_total": -854, + "ram_st_total": -64 }, "libesp32.a:clk.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 893, - "flash_text": 581, - "iram": 67, - "other": 0, - "total": 1541 + ".flash.rodata": 893, + ".flash.text": 581, + ".iram0.text": 67, + "flash_total": 1541, + "ram_st_total": 67 }, "libesp32.a:cpu_start.c.o": { - "bss": -1, - "data": 0, - "diram": 0, - "flash_rodata": -1073, - "flash_text": -255, - "iram": -1067, - "other": 0, - "total": -2396 + ".dram0.bss": -1, + ".flash.rodata": -1073, + ".flash.text": -255, + ".iram0.text": -1067, + "flash_total": -2395, + "ram_st_total": -1068 }, "libesp32.a:cpu_start.o": { - "bss": 1, - "data": 0, - "diram": 0, - "flash_rodata": 486, - "flash_text": 277, - "iram": 806, - "other": 0, - "total": 1570 + ".dram0.bss": 1, + ".flash.rodata": 486, + ".flash.text": 277, + ".iram0.text": 806, + "flash_total": 1569, + "ram_st_total": 807 }, "libesp32.a:crosscore_int.c.o": { - "bss": -8, - "data": -8, - "diram": 0, - "flash_rodata": -146, - "flash_text": -134, - "iram": -195, - "other": 0, - "total": -491 + ".dram0.bss": -8, + ".dram0.data": -8, + ".flash.rodata": -146, + ".flash.text": -134, + ".iram0.text": -195, + "flash_total": -483, + "ram_st_total": -211 }, "libesp32.a:crosscore_int.o": { - "bss": 8, - "data": 8, - "diram": 0, - "flash_rodata": 148, - "flash_text": 126, - "iram": 204, - "other": 0, - "total": 494 + ".dram0.bss": 8, + ".dram0.data": 8, + ".flash.rodata": 148, + ".flash.text": 126, + ".iram0.text": 204, + "flash_total": 486, + "ram_st_total": 220 }, "libesp32.a:dbg_stubs.o": { - "bss": 2072, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 100, - "iram": 32, - "other": 0, - "total": 2204 + ".dram0.bss": 2072, + ".flash.text": 100, + ".iram0.text": 32, + "flash_total": 132, + "ram_st_total": 2104 }, "libesp32.a:dport_access.c.o": { - "bss": -40, - "data": -8, - "diram": 0, - "flash_rodata": -126, - "flash_text": -189, - "iram": -422, - "other": 0, - "total": -785 + ".dram0.bss": -40, + ".dram0.data": -8, + ".flash.rodata": -126, + ".flash.text": -189, + ".iram0.text": -422, + "flash_total": -745, + "ram_st_total": -470 }, "libesp32.a:dport_access.o": { - "bss": 40, - "data": 8, - "diram": 0, - "flash_rodata": 129, - "flash_text": 189, - "iram": 539, - "other": 0, - "total": 905 + ".dram0.bss": 40, + ".dram0.data": 8, + ".flash.rodata": 129, + ".flash.text": 189, + ".iram0.text": 539, + "flash_total": 865, + "ram_st_total": 587 }, "libesp32.a:dport_panic_highint_hdl.S.o": { - "bss": 0, - "data": -12, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -250, - "other": 0, - "total": -262 + ".dram0.data": -12, + ".iram0.text": -250, + "flash_total": -262, + "ram_st_total": -262 }, "libesp32.a:dport_panic_highint_hdl.o": { - "bss": 0, - "data": 8, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 234, - "other": 0, - "total": 242 + ".dram0.data": 8, + ".iram0.text": 234, + "flash_total": 242, + "ram_st_total": 242 }, "libesp32.a:esp_err_to_name.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 4091, - "flash_text": 50, - "iram": 0, - "other": 0, - "total": 4141 + ".flash.rodata": 4091, + ".flash.text": 50, + "flash_total": 4141, + "ram_st_total": 0 }, "libesp32.a:esp_timer.o": { - "bss": 20, - "data": 8, - "diram": 0, - "flash_rodata": 142, - "flash_text": 429, - "iram": 702, - "other": 0, - "total": 1301 + ".dram0.bss": 20, + ".dram0.data": 8, + ".flash.rodata": 142, + ".flash.text": 429, + ".iram0.text": 702, + "flash_total": 1281, + "ram_st_total": 730 }, "libesp32.a:esp_timer_esp32.o": { - "bss": 26, - "data": 8, - "diram": 0, - "flash_rodata": 526, - "flash_text": 254, - "iram": 1295, - "other": 0, - "total": 2109 + ".dram0.bss": 26, + ".dram0.data": 8, + ".flash.rodata": 526, + ".flash.text": 254, + ".iram0.text": 1295, + "flash_total": 2083, + "ram_st_total": 1329 }, "libesp32.a:ets_timer_legacy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:event_default_handlers.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:event_loop.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:freertos_hooks.o": { - "bss": 128, - "data": 8, - "diram": 0, - "flash_rodata": 0, - "flash_text": 137, - "iram": 43, - "other": 0, - "total": 316 + ".dram0.bss": 128, + ".dram0.data": 8, + ".flash.text": 137, + ".iram0.text": 43, + "flash_total": 188, + "ram_st_total": 179 }, "libesp32.a:hw_random.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:hw_random.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 74, - "other": 0, - "total": 78 + ".dram0.bss": 4, + ".iram0.text": 74, + "flash_total": 74, + "ram_st_total": 78 }, "libesp32.a:int_wdt.c.o": { - "bss": -1, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -341, - "iram": -94, - "other": 0, - "total": -436 + ".dram0.bss": -1, + ".flash.text": -341, + ".iram0.text": -94, + "flash_total": -435, + "ram_st_total": -95 }, "libesp32.a:int_wdt.o": { - "bss": 1, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 301, - "iram": 87, - "other": 0, - "total": 389 + ".dram0.bss": 1, + ".flash.text": 301, + ".iram0.text": 87, + "flash_total": 388, + "ram_st_total": 88 }, "libesp32.a:intr_alloc.c.o": { - "bss": -22, - "data": -8, - "diram": 0, - "flash_rodata": -704, - "flash_text": -1681, - "iram": -656, - "other": 0, - "total": -3071 + ".dram0.bss": -22, + ".dram0.data": -8, + ".flash.rodata": -704, + ".flash.text": -1681, + ".iram0.text": -656, + "flash_total": -3049, + "ram_st_total": -686 }, "libesp32.a:intr_alloc.o": { - "bss": 22, - "data": 8, - "diram": 0, - "flash_rodata": 710, - "flash_text": 1749, - "iram": 726, - "other": 0, - "total": 3215 + ".dram0.bss": 22, + ".dram0.data": 8, + ".flash.rodata": 710, + ".flash.text": 1749, + ".iram0.text": 726, + "flash_total": 3193, + "ram_st_total": 756 }, "libesp32.a:ipc.o": { - "bss": 36, - "data": 0, - "diram": 0, - "flash_rodata": 104, - "flash_text": 329, - "iram": 159, - "other": 0, - "total": 628 + ".dram0.bss": 36, + ".flash.rodata": 104, + ".flash.text": 329, + ".iram0.text": 159, + "flash_total": 592, + "ram_st_total": 195 }, "libesp32.a:lib_printf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:panic.c.o": { - "bss": -5, - "data": -2029, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -2223, - "other": 0, - "total": -4257 + ".dram0.bss": -5, + ".dram0.data": -2029, + ".iram0.text": -2223, + "flash_total": -4252, + "ram_st_total": -4257 }, "libesp32.a:panic.o": { - "bss": 5, - "data": 2579, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 2145, - "other": 0, - "total": 4729 + ".dram0.bss": 5, + ".dram0.data": 2579, + ".iram0.text": 2145, + "flash_total": 4724, + "ram_st_total": 4729 }, "libesp32.a:phy_init.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:pm_esp32.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -8, - "iram": 0, - "other": 0, - "total": -8 + ".flash.text": -8, + "flash_total": -8, + "ram_st_total": 0 }, "libesp32.a:sha.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp32.a:stack_check.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 42, - "flash_text": 32, - "iram": 0, - "other": 0, - "total": 78 + ".dram0.bss": 4, + ".flash.rodata": 42, + ".flash.text": 32, + "flash_total": 74, + "ram_st_total": 4 }, "libesp32.a:system_api.o": { - "bss": 8, - "data": 0, - "diram": 0, - "flash_rodata": 662, - "flash_text": 0, - "iram": 589, - "other": 0, - "total": 1259 + ".dram0.bss": 8, + ".flash.rodata": 662, + ".iram0.text": 589, + "flash_total": 1251, + "ram_st_total": 597 }, "libesp32.a:system_api_esp32.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -435, - "other": 0, - "total": -435 + ".iram0.text": -435, + "flash_total": -435, + "ram_st_total": -435 }, "libesp32.a:task_wdt.c.o": { - "bss": -4, - "data": -53, - "diram": 0, - "flash_rodata": -494, - "flash_text": -1223, - "iram": 0, - "other": 0, - "total": -1774 + ".dram0.bss": -4, + ".dram0.data": -53, + ".flash.rodata": -494, + ".flash.text": -1223, + "flash_total": -1770, + "ram_st_total": -57 }, "libesp32.a:wifi_init.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 9, - "flash_text": 17, - "iram": 0, - "other": 0, - "total": 26 + ".flash.rodata": 9, + ".flash.text": 17, + "flash_total": 26, + "ram_st_total": 0 }, "libesp32.a:wifi_os_adapter.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp_common.a:brownout.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -203, - "flash_text": -120, - "iram": 0, - "other": 0, - "total": -323 + ".flash.rodata": -203, + ".flash.text": -120, + "flash_total": -323, + "ram_st_total": 0 }, "libesp_common.a:esp_err_to_name.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -5101, - "flash_text": -53, - "iram": 0, - "other": 0, - "total": -5154 + ".flash.rodata": -5101, + ".flash.text": -53, + "flash_total": -5154, + "ram_st_total": 0 }, "libesp_common.a:freertos_hooks.c.o": { - "bss": -128, - "data": -8, - "diram": 0, - "flash_rodata": 0, - "flash_text": -243, - "iram": -47, - "other": 0, - "total": -426 + ".dram0.bss": -128, + ".dram0.data": -8, + ".flash.text": -243, + ".iram0.text": -47, + "flash_total": -298, + "ram_st_total": -183 }, "libesp_common.a:ipc.c.o": { - "bss": -56, - "data": 0, - "diram": 0, - "flash_rodata": -117, - "flash_text": -367, - "iram": -192, - "other": 0, - "total": -732 + ".dram0.bss": -56, + ".flash.rodata": -117, + ".flash.text": -367, + ".iram0.text": -192, + "flash_total": -676, + "ram_st_total": -248 }, "libesp_common.a:pm_locks.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp_common.a:system_api.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libesp_ringbuf.a:ringbuf.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -150, - "flash_text": 0, - "iram": -858, - "other": 0, - "total": -1008 + ".flash.rodata": -150, + ".iram0.text": -858, + "flash_total": -1008, + "ram_st_total": -858 }, "libesp_timer.a:esp_timer.c.o": { - "bss": -12, - "data": -8, - "diram": 0, - "flash_rodata": -118, - "flash_text": -401, - "iram": -280, - "other": 0, - "total": -819 + ".dram0.bss": -12, + ".dram0.data": -8, + ".flash.rodata": -104, + ".flash.text": -401, + ".iram0.text": -280, + "flash_total": -793, + "ram_st_total": -300 }, "libesp_timer.a:esp_timer_impl_lac.c.o": { - "bss": -8, - "data": -8, - "diram": 0, - "flash_rodata": -389, - "flash_text": -322, - "iram": -514, - "other": 0, - "total": -1241 + ".dram0.bss": -8, + ".dram0.data": -8, + ".flash.rodata": -389, + ".flash.text": -322, + ".iram0.text": -514, + "flash_total": -1233, + "ram_st_total": -530 }, "libethernet.a:emac_dev.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libethernet.a:emac_main.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libfreertos.a:FreeRTOS-openocd.c.o": { - "bss": 0, - "data": -4, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -4 + ".dram0.data": -4, + "flash_total": -4, + "ram_st_total": -4 }, "libfreertos.a:FreeRTOS-openocd.o": { - "bss": 0, - "data": 4, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 4 + ".dram0.data": 4, + "flash_total": 4, + "ram_st_total": 4 }, "libfreertos.a:event_groups.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libfreertos.a:list.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -138, - "other": 0, - "total": -138 + ".iram0.text": -138, + "flash_total": -138, + "ram_st_total": -138 }, "libfreertos.a:list.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 142, - "other": 0, - "total": 142 + ".iram0.text": 142, + "flash_total": 142, + "ram_st_total": 142 }, "libfreertos.a:port.c.o": { - "bss": -32, - "data": 0, - "diram": 0, - "flash_rodata": -340, - "flash_text": 0, - "iram": -737, - "other": 0, - "total": -1109 + ".dram0.bss": -32, + ".flash.rodata": -340, + ".iram0.text": -737, + "flash_total": -1077, + "ram_st_total": -769 }, "libfreertos.a:port.o": { - "bss": 16, - "data": 0, - "diram": 0, - "flash_rodata": 369, - "flash_text": 0, - "iram": 617, - "other": 0, - "total": 1002 + ".dram0.bss": 16, + ".flash.rodata": 369, + ".iram0.text": 617, + "flash_total": 986, + "ram_st_total": 633 }, "libfreertos.a:portasm.S.o": { - "bss": 0, - "data": -3084, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -476, - "other": 0, - "total": -3560 + ".dram0.data": -3084, + ".iram0.text": -476, + "flash_total": -3560, + "ram_st_total": -3560 }, "libfreertos.a:portasm.o": { - "bss": 0, - "data": 3084, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 480, - "other": 0, - "total": 3564 + ".dram0.data": 3084, + ".iram0.text": 480, + "flash_total": 3564, + "ram_st_total": 3564 }, "libfreertos.a:queue.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -424, - "flash_text": 0, - "iram": -2411, - "other": 0, - "total": -2835 + ".flash.rodata": -366, + ".iram0.text": -2411, + "flash_total": -2777, + "ram_st_total": -2411 }, "libfreertos.a:queue.o": { - "bss": 56, - "data": 8, - "diram": 0, - "flash_rodata": 369, - "flash_text": 0, - "iram": 2569, - "other": 0, - "total": 3002 + ".dram0.bss": 56, + ".dram0.data": 8, + ".flash.rodata": 369, + ".iram0.text": 2569, + "flash_total": 2946, + "ram_st_total": 2633 }, "libfreertos.a:ringbuf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libfreertos.a:tasks.c.o": { - "bss": -700, - "data": -12, - "diram": 0, - "flash_rodata": -663, - "flash_text": 0, - "iram": -5737, - "other": 0, - "total": -7112 + ".dram0.bss": -700, + ".dram0.data": -12, + ".flash.rodata": -451, + ".iram0.text": -5737, + "flash_total": -6200, + "ram_st_total": -6449 }, "libfreertos.a:tasks.o": { - "bss": 700, - "data": 20, - "diram": 0, - "flash_rodata": 503, - "flash_text": 0, - "iram": 5667, - "other": 0, - "total": 6890 + ".dram0.bss": 700, + ".dram0.data": 20, + ".flash.rodata": 503, + ".iram0.text": 5667, + "flash_total": 6190, + "ram_st_total": 6387 }, "libfreertos.a:timers.c.o": { - "bss": -56, - "data": -8, - "diram": 0, - "flash_rodata": -223, - "flash_text": 0, - "iram": -1007, - "other": 0, - "total": -1294 + ".dram0.bss": -56, + ".dram0.data": -8, + ".flash.rodata": -223, + ".iram0.text": -1007, + "flash_total": -1238, + "ram_st_total": -1071 }, "libfreertos.a:timers.o": { - "bss": 56, - "data": 8, - "diram": 0, - "flash_rodata": 233, - "flash_text": 0, - "iram": 1149, - "other": 0, - "total": 1446 + ".dram0.bss": 56, + ".dram0.data": 8, + ".flash.rodata": 233, + ".iram0.text": 1149, + "flash_total": 1390, + "ram_st_total": 1213 }, "libfreertos.a:xtensa_context.S.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -367, - "other": 0, - "total": -367 + ".iram0.text": -367, + "flash_total": -367, + "ram_st_total": -367 }, "libfreertos.a:xtensa_context.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 299, - "other": 0, - "total": 299 + ".iram0.text": 299, + "flash_total": 299, + "ram_st_total": 299 }, "libfreertos.a:xtensa_init.c.o": { - "bss": -4, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -32, - "other": 0, - "total": -36 + ".dram0.bss": -4, + ".iram0.text": -32, + "flash_total": -32, + "ram_st_total": -36 }, "libfreertos.a:xtensa_init.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 32, - "other": 0, - "total": 36 + ".dram0.bss": 4, + ".iram0.text": 32, + "flash_total": 32, + "ram_st_total": 36 }, "libfreertos.a:xtensa_intr.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -35, - "flash_text": 0, - "iram": -113, - "other": 0, - "total": -148 + ".flash.rodata": -35, + ".iram0.text": -113, + "flash_total": -148, + "ram_st_total": -113 }, "libfreertos.a:xtensa_intr.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 35, - "flash_text": 0, - "iram": 104, - "other": 0, - "total": 139 + ".flash.rodata": 35, + ".iram0.text": 104, + "flash_total": 139, + "ram_st_total": 104 }, "libfreertos.a:xtensa_intr_asm.S.o": { - "bss": 0, - "data": -1024, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -51, - "other": 0, - "total": -1075 + ".dram0.data": -1024, + ".iram0.text": -51, + "flash_total": -1075, + "ram_st_total": -1075 }, "libfreertos.a:xtensa_intr_asm.o": { - "bss": 0, - "data": 1024, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 51, - "other": 0, - "total": 1075 + ".dram0.data": 1024, + ".iram0.text": 51, + "flash_total": 1075, + "ram_st_total": 1075 }, "libfreertos.a:xtensa_vector_defaults.S.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -46, - "other": 0, - "total": -46 + ".iram0.text": -46, + "flash_total": -46, + "ram_st_total": -46 }, "libfreertos.a:xtensa_vector_defaults.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 46, - "other": 0, - "total": 46 + ".iram0.text": 46, + "flash_total": 46, + "ram_st_total": 46 }, "libfreertos.a:xtensa_vectors.S.o": { - "bss": 0, - "data": -8, - "diram": 0, - "flash_rodata": -36, - "flash_text": 0, - "iram": -1769, - "other": 0, - "total": -1813 + ".dram0.data": -8, + ".flash.rodata": -36, + ".iram0.text": -1344, + ".iram0.vectors": -425, + "flash_total": -1813, + "ram_st_total": -1777 }, "libfreertos.a:xtensa_vectors.o": { - "bss": 0, - "data": 8, - "diram": 0, - "flash_rodata": 36, - "flash_text": 0, - "iram": 1697, - "other": 0, - "total": 1741 + ".dram0.data": 8, + ".flash.rodata": 36, + ".iram0.text": 1272, + ".iram0.vectors": 425, + "flash_total": 1741, + "ram_st_total": 1705 }, "libgcc.a:_addsubdf3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_bswapsi2.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_cmpdf2.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_divdf3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_divdi3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.rodata": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_divsf3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_extendsfdf2.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_fixdfsi.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_floatdidf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_floatdisf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_floatsidf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_moddi3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.rodata": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_muldf3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_popcountsi2.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_udivdi3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.rodata": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:_umoddi3.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.rodata": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libgcc.a:lib2funcs.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 104, - "other": 0, - "total": 104 + ".iram0.text": 104, + "flash_total": 104, + "ram_st_total": 104 }, "libgcc.a:unwind-dw2-fde.o": { - "bss": 20, - "data": 4, - "diram": 0, - "flash_rodata": 404, - "flash_text": 3316, - "iram": 0, - "other": 0, - "total": 3744 + ".dram0.bss": 20, + ".dram0.data": 4, + ".flash.rodata": 404, + ".flash.text": 3316, + "flash_total": 3724, + "ram_st_total": 24 }, "libgcc.a:unwind-dw2-xtensa.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 324, - "flash_text": 2172, - "iram": 0, - "other": 0, - "total": 2496 + ".flash.rodata": 324, + ".flash.text": 2172, + "flash_total": 2496, + "ram_st_total": 0 }, "libhal.a:clock.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 72, - "other": 0, - "total": 72 + ".iram0.text": 72, + "flash_total": 72, + "ram_st_total": 72 }, "libhal.a:int_asm--set_intclear.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".iram0.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libhal.a:interrupts--intlevel.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".flash.rodata": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libhal.a:state_asm--restore_extra_nw.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".iram0.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libhal.a:state_asm--save_extra_nw.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + ".iram0.text": 0, + "flash_total": 0, + "ram_st_total": 0 }, "libhal.a:windowspill_asm.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -4, - "other": 0, - "total": -4 + ".iram0.text": -4, + "flash_total": -4, + "ram_st_total": -4 }, "libheap.a:heap_caps.c.o": { - "bss": 0, - "data": -4, - "diram": 0, - "flash_rodata": -362, - "flash_text": -50, - "iram": -884, - "other": 0, - "total": -1300 + ".dram0.data": -4, + ".flash.rodata": -362, + ".flash.text": -50, + ".iram0.text": -884, + "flash_total": -1300, + "ram_st_total": -888 }, "libheap.a:heap_caps.o": { - "bss": 0, - "data": 4, - "diram": 0, - "flash_rodata": 593, - "flash_text": 188, - "iram": 1195, - "other": 0, - "total": 1980 + ".dram0.data": 4, + ".flash.rodata": 593, + ".flash.text": 188, + ".iram0.text": 1195, + "flash_total": 1980, + "ram_st_total": 1199 }, "libheap.a:heap_caps_init.c.o": { - "bss": -4, - "data": 0, - "diram": 0, - "flash_rodata": -379, - "flash_text": -834, - "iram": 0, - "other": 0, - "total": -1217 + ".dram0.bss": -4, + ".flash.rodata": -379, + ".flash.text": -834, + "flash_total": -1213, + "ram_st_total": -4 }, "libheap.a:heap_caps_init.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 387, - "flash_text": 1030, - "iram": 0, - "other": 0, - "total": 1421 + ".dram0.bss": 4, + ".flash.rodata": 387, + ".flash.text": 1030, + "flash_total": 1417, + "ram_st_total": 4 }, "libheap.a:multi_heap.c.o": { - "bss": 0, - "data": -300, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -2245, - "other": 0, - "total": -2545 + ".dram0.data": -300, + ".iram0.text": -2245, + "flash_total": -2545, + "ram_st_total": -2545 }, "libheap.a:multi_heap.o": { - "bss": 0, - "data": 857, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 2217, - "other": 0, - "total": 3074 + ".dram0.data": 857, + ".iram0.text": 2217, + "flash_total": 3074, + "ram_st_total": 3074 }, "libheap.a:multi_heap_poisoning.o": { - "bss": 0, - "data": 470, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 964, - "other": 0, - "total": 1434 + ".dram0.data": 470, + ".iram0.text": 964, + "flash_total": 1434, + "ram_st_total": 1434 }, "liblog.a:log.c.o": { - "bss": -264, - "data": -8, - "diram": 0, - "flash_rodata": -147, - "flash_text": -484, - "iram": -34, - "other": 0, - "total": -937 + ".dram0.bss": -264, + ".dram0.data": -8, + ".flash.rodata": -147, + ".flash.text": -484, + ".iram0.text": -34, + "flash_total": -673, + "ram_st_total": -306 }, "liblog.a:log.o": { - "bss": 268, - "data": 8, - "diram": 0, - "flash_rodata": 166, - "flash_text": 396, - "iram": 456, - "other": 0, - "total": 1294 + ".dram0.bss": 268, + ".dram0.data": 8, + ".flash.rodata": 166, + ".flash.text": 396, + ".iram0.text": 456, + "flash_total": 1026, + "ram_st_total": 732 }, "liblog.a:log_freertos.c.o": { - "bss": -8, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -188, - "other": 0, - "total": -196 + ".dram0.bss": -8, + ".iram0.text": -188, + "flash_total": -188, + "ram_st_total": -196 }, "liblwip.a:api_lib.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 919, - "flash_text": 1425, - "iram": 0, - "other": 0, - "total": 2344 + ".flash.rodata": 919, + ".flash.text": 1425, + "flash_total": 2344, + "ram_st_total": 0 }, "liblwip.a:api_msg.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 1366, - "flash_text": 3763, - "iram": 0, - "other": 0, - "total": 5129 + ".flash.rodata": 1366, + ".flash.text": 3763, + "flash_total": 5129, + "ram_st_total": 0 }, "liblwip.a:def.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 91, - "iram": 0, - "other": 0, - "total": 91 + ".flash.text": 91, + "flash_total": 91, + "ram_st_total": 0 }, "liblwip.a:dhcp.o": { - "bss": 8, - "data": 0, - "diram": 0, - "flash_rodata": 1401, - "flash_text": 3456, - "iram": 0, - "other": 0, - "total": 4865 + ".dram0.bss": 8, + ".flash.rodata": 1401, + ".flash.text": 3456, + "flash_total": 4857, + "ram_st_total": 8 }, "liblwip.a:dhcpserver.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 203, - "iram": 0, - "other": 0, - "total": 207 + ".dram0.bss": 4, + ".flash.text": 203, + "flash_total": 203, + "ram_st_total": 4 }, "liblwip.a:dns.o": { - "bss": 1292, - "data": 0, - "diram": 0, - "flash_rodata": 206, - "flash_text": 1809, - "iram": 0, - "other": 0, - "total": 3307 + ".dram0.bss": 1292, + ".flash.rodata": 206, + ".flash.text": 1809, + "flash_total": 2015, + "ram_st_total": 1292 }, "liblwip.a:etharp.o": { - "bss": 241, - "data": 0, - "diram": 0, - "flash_rodata": 658, - "flash_text": 2618, - "iram": 0, - "other": 0, - "total": 3517 + ".dram0.bss": 241, + ".flash.rodata": 658, + ".flash.text": 2618, + "flash_total": 3276, + "ram_st_total": 241 }, "liblwip.a:ethernet.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 12, - "flash_text": 244, - "iram": 0, - "other": 0, - "total": 256 + ".flash.rodata": 12, + ".flash.text": 244, + "flash_total": 256, + "ram_st_total": 0 }, "liblwip.a:ethernetif.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "liblwip.a:ethip6.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "liblwip.a:icmp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 371, - "flash_text": 769, - "iram": 0, - "other": 0, - "total": 1140 + ".flash.rodata": 371, + ".flash.text": 769, + "flash_total": 1140, + "ram_st_total": 0 }, "liblwip.a:icmp6.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 127, - "flash_text": 863, - "iram": 0, - "other": 0, - "total": 990 + ".flash.rodata": 127, + ".flash.text": 863, + "flash_total": 990, + "ram_st_total": 0 }, "liblwip.a:igmp.o": { - "bss": 12, - "data": 0, - "diram": 0, - "flash_rodata": 707, - "flash_text": 1604, - "iram": 0, - "other": 0, - "total": 2323 + ".dram0.bss": 12, + ".flash.rodata": 707, + ".flash.text": 1604, + "flash_total": 2311, + "ram_st_total": 12 }, "liblwip.a:inet_chksum.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 580, - "iram": 0, - "other": 0, - "total": 580 + ".flash.text": 580, + "flash_total": 580, + "ram_st_total": 0 }, "liblwip.a:init.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 27, - "iram": 0, - "other": 0, - "total": 27 + ".flash.text": 27, + "flash_total": 27, + "ram_st_total": 0 }, "liblwip.a:ip.o": { - "bss": 60, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 50, - "iram": 0, - "other": 0, - "total": 110 + ".dram0.bss": 60, + ".flash.text": 50, + "flash_total": 50, + "ram_st_total": 60 }, "liblwip.a:ip4.o": { - "bss": 6, - "data": 0, - "diram": 0, - "flash_rodata": 139, - "flash_text": 1664, - "iram": 0, - "other": 0, - "total": 1809 + ".dram0.bss": 6, + ".flash.rodata": 139, + ".flash.text": 1664, + "flash_total": 1803, + "ram_st_total": 6 }, "liblwip.a:ip4_addr.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 40, - "flash_text": 72, - "iram": 0, - "other": 0, - "total": 112 + ".flash.rodata": 40, + ".flash.text": 72, + "flash_total": 112, + "ram_st_total": 0 }, "liblwip.a:ip6.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 124, - "flash_text": 3212, - "iram": 0, - "other": 0, - "total": 3336 + ".flash.rodata": 124, + ".flash.text": 3212, + "flash_total": 3336, + "ram_st_total": 0 }, "liblwip.a:ip6_addr.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 20, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 20 + ".flash.rodata": 20, + "flash_total": 20, + "ram_st_total": 0 }, "liblwip.a:ip6_frag.o": { - "bss": 6, - "data": 0, - "diram": 0, - "flash_rodata": 442, - "flash_text": 1905, - "iram": 0, - "other": 0, - "total": 2353 + ".dram0.bss": 6, + ".flash.rodata": 442, + ".flash.text": 1905, + "flash_total": 2347, + "ram_st_total": 6 }, "liblwip.a:memp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 108, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 108 + ".flash.rodata": 108, + "flash_total": 108, + "ram_st_total": 0 }, "liblwip.a:mld6.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 1334, - "iram": 0, - "other": 0, - "total": 1338 + ".dram0.bss": 4, + ".flash.text": 1334, + "flash_total": 1334, + "ram_st_total": 4 }, "liblwip.a:nd6.o": { - "bss": 1027, - "data": 8, - "diram": 0, - "flash_rodata": 136, - "flash_text": 8427, - "iram": 0, - "other": 0, - "total": 9598 + ".dram0.bss": 1027, + ".dram0.data": 8, + ".flash.rodata": 136, + ".flash.text": 8427, + "flash_total": 8571, + "ram_st_total": 1035 }, "liblwip.a:netbuf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 326, - "flash_text": 154, - "iram": 0, - "other": 0, - "total": 480 + ".flash.rodata": 326, + ".flash.text": 154, + "flash_total": 480, + "ram_st_total": 0 }, "liblwip.a:netif.o": { - "bss": 241, - "data": 0, - "diram": 0, - "flash_rodata": 287, - "flash_text": 1239, - "iram": 0, - "other": 0, - "total": 1767 + ".dram0.bss": 241, + ".flash.rodata": 287, + ".flash.text": 1239, + "flash_total": 1526, + "ram_st_total": 241 }, "liblwip.a:pbuf.o": { - "bss": 1, - "data": 0, - "diram": 0, - "flash_rodata": 1161, - "flash_text": 2453, - "iram": 0, - "other": 0, - "total": 3615 + ".dram0.bss": 1, + ".flash.rodata": 1161, + ".flash.text": 2453, + "flash_total": 3614, + "ram_st_total": 1 }, "liblwip.a:raw.o": { - "bss": 4, - "data": 0, - "diram": 0, - "flash_rodata": 223, - "flash_text": 1087, - "iram": 0, - "other": 0, - "total": 1314 + ".dram0.bss": 4, + ".flash.rodata": 223, + ".flash.text": 1087, + "flash_total": 1310, + "ram_st_total": 4 }, "liblwip.a:sockets.o": { - "bss": 728, - "data": 0, - "diram": 0, - "flash_rodata": 824, - "flash_text": 4627, - "iram": 0, - "other": 0, - "total": 6179 + ".dram0.bss": 728, + ".flash.rodata": 824, + ".flash.text": 4627, + "flash_total": 5451, + "ram_st_total": 728 }, "liblwip.a:sys_arch.o": { - "bss": 8, - "data": 0, - "diram": 0, - "flash_rodata": 222, - "flash_text": 1216, - "iram": 0, - "other": 0, - "total": 1446 + ".dram0.bss": 8, + ".flash.rodata": 222, + ".flash.text": 1216, + "flash_total": 1438, + "ram_st_total": 8 }, "liblwip.a:tcp.o": { - "bss": 23, - "data": 4, - "diram": 0, - "flash_rodata": 1384, - "flash_text": 4290, - "iram": 0, - "other": 0, - "total": 5701 + ".dram0.bss": 23, + ".dram0.data": 4, + ".flash.rodata": 1384, + ".flash.text": 4290, + "flash_total": 5678, + "ram_st_total": 27 }, "liblwip.a:tcp_in.o": { - "bss": 54, - "data": 0, - "diram": 0, - "flash_rodata": 916, - "flash_text": 8127, - "iram": 0, - "other": 0, - "total": 9097 + ".dram0.bss": 54, + ".flash.rodata": 916, + ".flash.text": 8127, + "flash_total": 9043, + "ram_st_total": 54 }, "liblwip.a:tcp_out.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 1124, - "flash_text": 5060, - "iram": 0, - "other": 0, - "total": 6184 + ".flash.rodata": 1124, + ".flash.text": 5060, + "flash_total": 6184, + "ram_st_total": 0 }, "liblwip.a:tcpip.o": { - "bss": 16, - "data": 0, - "diram": 0, - "flash_rodata": 191, - "flash_text": 644, - "iram": 0, - "other": 0, - "total": 851 + ".dram0.bss": 16, + ".flash.rodata": 191, + ".flash.text": 644, + "flash_total": 835, + "ram_st_total": 16 }, "liblwip.a:timers.o": { - "bss": 12, - "data": 0, - "diram": 0, - "flash_rodata": 131, - "flash_text": 638, - "iram": 0, - "other": 0, - "total": 781 + ".dram0.bss": 12, + ".flash.rodata": 131, + ".flash.text": 638, + "flash_total": 769, + "ram_st_total": 12 }, "liblwip.a:udp.o": { - "bss": 4, - "data": 2, - "diram": 0, - "flash_rodata": 216, - "flash_text": 3020, - "iram": 0, - "other": 0, - "total": 3242 + ".dram0.bss": 4, + ".dram0.data": 2, + ".flash.rodata": 216, + ".flash.text": 3020, + "flash_total": 3238, + "ram_st_total": 6 }, "liblwip.a:vfs_lwip.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 155, - "flash_text": 307, - "iram": 0, - "other": 0, - "total": 462 + ".flash.rodata": 155, + ".flash.text": 307, + "flash_total": 462, + "ram_st_total": 0 }, "liblwip.a:wlanif.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libm.a:lib_a-s_fpclassify.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 92, - "other": 0, - "total": 92 + ".iram0.text": 92, + "flash_total": 92, + "ram_st_total": 92 }, "libmain.a:app_main.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 10, - "flash_text": 53, - "iram": 0, - "other": 0, - "total": 63 + ".flash.rodata": 10, + ".flash.text": 53, + "flash_total": 63, + "ram_st_total": 0 }, "libmain.a:blink.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -39, - "flash_text": -72, - "iram": 0, - "other": 0, - "total": -111 + ".flash.rodata": -39, + ".flash.text": -72, + "flash_total": -111, + "ram_st_total": 0 }, "libmbedcrypto.a:esp_sha256.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmbedcrypto.a:sha.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmbedtls.a:esp_sha256.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_common.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_config.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_main.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_parent.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_route.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_schedule.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_timer.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_utilities.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libmesh.a:mesh_wifi.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_action.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_action_vendor.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_api.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_crypto.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_crypto_ccmp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_crypto_tkip.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_crypto_wep.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_debug.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_ets.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_hostap.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_ht.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_ie_vendor.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_input.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_ioctl.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_mesh_quick.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_misc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_nvs.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_output.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_phy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_power.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_proto.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_regdomain.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_rfid.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_scan.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_sta.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:ieee80211_timer.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:wl_chm.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnet80211.a:wl_cnx.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnewlib.a:heap.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -151, - "other": 0, - "total": -151 + ".iram0.text": -151, + "flash_total": -151, + "ram_st_total": -151 }, "libnewlib.a:locks.c.o": { - "bss": 0, - "data": -8, - "diram": 0, - "flash_rodata": -84, - "flash_text": -5, - "iram": -487, - "other": 0, - "total": -584 + ".dram0.data": -8, + ".flash.rodata": -84, + ".flash.text": -5, + ".iram0.text": -487, + "flash_total": -584, + "ram_st_total": -495 }, "libnewlib.a:locks.o": { - "bss": 0, - "data": 8, - "diram": 0, - "flash_rodata": 84, - "flash_text": 0, - "iram": 552, - "other": 0, - "total": 644 + ".dram0.data": 8, + ".flash.rodata": 84, + ".iram0.text": 552, + "flash_total": 644, + "ram_st_total": 560 }, "libnewlib.a:pthread.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -12, - "iram": 0, - "other": 0, - "total": -12 + ".flash.text": -12, + "flash_total": -12, + "ram_st_total": 0 }, "libnewlib.a:reent_init.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -59, - "other": 0, - "total": -59 + ".iram0.text": -59, + "flash_total": -59, + "ram_st_total": -59 }, "libnewlib.a:reent_init.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 2, - "flash_text": 0, - "iram": 68, - "other": 0, - "total": 70 + ".flash.rodata": 2, + ".iram0.text": 68, + "flash_total": 70, + "ram_st_total": 68 }, "libnewlib.a:syscall_table.c.o": { - "bss": -240, - "data": -144, - "diram": 0, - "flash_rodata": 0, - "flash_text": -82, - "iram": 0, - "other": 0, - "total": -466 + ".dram0.bss": -240, + ".dram0.data": -144, + ".flash.text": -82, + "flash_total": -226, + "ram_st_total": -384 }, "libnewlib.a:syscall_table.o": { - "bss": 240, - "data": 144, - "diram": 0, - "flash_rodata": 0, - "flash_text": 67, - "iram": 0, - "other": 0, - "total": 451 + ".dram0.bss": 240, + ".dram0.data": 144, + ".flash.text": 67, + "flash_total": 211, + "ram_st_total": 384 }, "libnewlib.a:syscalls.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -50, - "iram": 0, - "other": 0, - "total": -50 + ".flash.text": -50, + "flash_total": -50, + "ram_st_total": 0 }, "libnewlib.a:syscalls.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 45, - "iram": 94, - "other": 0, - "total": 139 + ".flash.text": 45, + ".iram0.text": 94, + "flash_total": 139, + "ram_st_total": 94 }, "libnewlib.a:time.c.o": { - "bss": -32, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -719, - "iram": -123, - "other": 0, - "total": -874 + ".dram0.bss": -32, + ".flash.text": -719, + ".iram0.text": -123, + "flash_total": -842, + "ram_st_total": -155 }, "libnewlib.a:time.o": { - "bss": 32, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 691, - "iram": 139, - "other": 0, - "total": 862 + ".dram0.bss": 32, + ".flash.text": 691, + ".iram0.text": 139, + "flash_total": 830, + "ram_st_total": 171 }, "libnvs_flash.a:nvs_api.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnvs_flash.a:nvs_item_hash_list.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnvs_flash.a:nvs_page.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnvs_flash.a:nvs_pagemanager.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnvs_flash.a:nvs_storage.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libnvs_flash.a:nvs_types.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libphy.a:phy.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libphy.a:phy_chip_v7.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libphy.a:phy_chip_v7_ana.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libphy.a:phy_chip_v7_cal.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:esf_buf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:if_hwctrl.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:lmac.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:pm.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:pm_for_bcn_only_mode.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:pp.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:pp_debug.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:pp_timer.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:rate_control.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:trc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpp.a:wdev.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libpthread.a:pthread.c.o": { - "bss": -8, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -81, - "iram": 0, - "other": 0, - "total": -89 + ".dram0.bss": -8, + ".flash.text": -81, + "flash_total": -81, + "ram_st_total": -8 }, "libpthread.a:pthread.o": { - "bss": 8, - "data": 8, - "diram": 0, - "flash_rodata": 512, - "flash_text": 298, - "iram": 174, - "other": 0, - "total": 1000 + ".dram0.bss": 8, + ".dram0.data": 8, + ".flash.rodata": 512, + ".flash.text": 298, + ".iram0.text": 174, + "flash_total": 992, + "ram_st_total": 190 }, "libpthread.a:pthread_local_storage.c.o": { - "bss": -4, - "data": -8, - "diram": 0, - "flash_rodata": 0, - "flash_text": -183, - "iram": 0, - "other": 0, - "total": -195 + ".dram0.bss": -4, + ".dram0.data": -8, + ".flash.text": -183, + "flash_total": -191, + "ram_st_total": -12 }, "libpthread.a:pthread_local_storage.o": { - "bss": 4, - "data": 8, - "diram": 0, - "flash_rodata": 126, - "flash_text": 476, - "iram": 0, - "other": 0, - "total": 614 + ".dram0.bss": 4, + ".dram0.data": 8, + ".flash.rodata": 126, + ".flash.text": 476, + "flash_total": 610, + "ram_st_total": 12 }, "librtc.a:bt_bb.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "librtc.a:pm.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "librtc.a:rtc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "librtc.a:rtc_analog.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsmartconfig_ack.a:smartconfig_ack.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc.a:brownout_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -269, - "iram": 0, - "other": 0, - "total": -269 + ".flash.text": -269, + "flash_total": -269, + "ram_st_total": 0 }, "libsoc.a:cpu_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -8, - "other": 0, - "total": -8 + ".iram0.text": -8, + "flash_total": -8, + "ram_st_total": -8 }, "libsoc.a:cpu_util.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -75, - "other": 0, - "total": -75 + ".iram0.text": -75, + "flash_total": -75, + "ram_st_total": -75 }, "libsoc.a:cpu_util.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 310, - "other": 0, - "total": 310 + ".iram0.text": 310, + "flash_total": 310, + "ram_st_total": 310 }, "libsoc.a:gpio_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc.a:gpio_periph.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc.a:memory_layout_utils.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -295, - "flash_text": -505, - "iram": 0, - "other": 0, - "total": -800 + ".flash.rodata": -295, + ".flash.text": -505, + "flash_total": -800, + "ram_st_total": 0 }, "libsoc.a:mpu_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -47, - "iram": 0, - "other": 0, - "total": -47 + ".flash.text": -47, + "flash_total": -47, + "ram_st_total": 0 }, "libsoc.a:rtc_clk.c.o": { - "bss": -4, - "data": -160, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -2104, - "other": 0, - "total": -2268 + ".dram0.bss": -4, + ".dram0.data": -160, + ".iram0.text": -2104, + "flash_total": -2264, + "ram_st_total": -2268 }, "libsoc.a:rtc_clk.o": { - "bss": 8, - "data": 660, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 1794, - "other": 0, - "total": 2462 + ".dram0.bss": 8, + ".dram0.data": 660, + ".iram0.text": 1794, + "flash_total": 2454, + "ram_st_total": 2462 }, "libsoc.a:rtc_init.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -956, - "other": 0, - "total": -956 + ".iram0.text": -956, + "flash_total": -956, + "ram_st_total": -956 }, "libsoc.a:rtc_init.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 980, - "other": 0, - "total": 980 + ".iram0.text": 980, + "flash_total": 980, + "ram_st_total": 980 }, "libsoc.a:rtc_io_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc.a:rtc_periph.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 2080, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 2080 + ".flash.rodata": 2080, + "flash_total": 2080, + "ram_st_total": 0 }, "libsoc.a:rtc_sleep.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc.a:rtc_time.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -194, - "flash_text": 0, - "iram": -819, - "other": 0, - "total": -1013 + ".flash.rodata": -194, + ".iram0.text": -819, + "flash_total": -1013, + "ram_st_total": -819 }, "libsoc.a:rtc_time.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 137, - "flash_text": 0, - "iram": 803, - "other": 0, - "total": 940 + ".flash.rodata": 137, + ".iram0.text": 803, + "flash_total": 940, + "ram_st_total": 803 }, "libsoc.a:rtc_wdt.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -796, - "other": 0, - "total": -796 + ".iram0.text": -796, + "flash_total": -796, + "ram_st_total": -796 }, "libsoc.a:soc_hal.c.o": { - "bss": 0, - "data": -24, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -234, - "other": 0, - "total": -258 + ".dram0.data": -24, + ".iram0.text": -234, + "flash_total": -258, + "ram_st_total": -258 }, "libsoc.a:soc_memory_layout.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -1197, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -1197 + ".flash.rodata": -1197, + "flash_total": -1197, + "ram_st_total": 0 }, "libsoc.a:soc_memory_layout.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 1239, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 1239 + ".flash.rodata": 1239, + "flash_total": 1239, + "ram_st_total": 0 }, "libsoc.a:spi_flash_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -48, - "flash_text": -302, - "iram": 0, - "other": 0, - "total": -350 + ".flash.rodata": -48, + ".flash.text": -302, + "flash_total": -350, + "ram_st_total": 0 }, "libsoc.a:spi_flash_hal_iram.c.o": { - "bss": 0, - "data": -24, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -1798, - "other": 0, - "total": -1822 + ".dram0.data": -24, + ".iram0.text": -1798, + "flash_total": -1822, + "ram_st_total": -1822 }, "libsoc.a:uart_hal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": -493, - "iram": 0, - "other": 0, - "total": -493 + ".flash.text": -493, + "flash_total": -493, + "ram_st_total": 0 }, "libsoc.a:uart_hal_iram.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -222, - "flash_text": -147, - "iram": 0, - "other": 0, - "total": -369 + ".flash.rodata": -222, + ".flash.text": -147, + "flash_total": -369, + "ram_st_total": 0 }, "libsoc_esp32.a:gpio_periph.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -160, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -160 + ".flash.rodata": -160, + "flash_total": -160, + "ram_st_total": 0 }, "libsoc_esp32.a:rtc_io_periph.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc_esp32.a:spi_periph.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libsoc_esp32.a:uart_periph.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libspi_flash.a:cache_utils.c.o": { - "bss": -14, - "data": -4, - "diram": 0, - "flash_rodata": -430, - "flash_text": -81, - "iram": -833, - "other": 0, - "total": -1362 + ".dram0.bss": -14, + ".dram0.data": -4, + ".flash.rodata": -430, + ".flash.text": -81, + ".iram0.text": -833, + "flash_total": -1348, + "ram_st_total": -851 }, "libspi_flash.a:cache_utils.o": { - "bss": 14, - "data": 4, - "diram": 0, - "flash_rodata": 390, - "flash_text": 81, - "iram": 836, - "other": 0, - "total": 1325 + ".dram0.bss": 14, + ".dram0.data": 4, + ".flash.rodata": 390, + ".flash.text": 81, + ".iram0.text": 836, + "flash_total": 1311, + "ram_st_total": 854 }, "libspi_flash.a:esp_flash_api.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": -244, - "flash_text": -16, - "iram": -600, - "other": 0, - "total": -860 + ".flash.rodata": -244, + ".flash.text": -16, + ".iram0.text": -600, + "flash_total": -860, + "ram_st_total": -600 }, "libspi_flash.a:esp_flash_spi_init.c.o": { - "bss": -4, - "data": -120, - "diram": 0, - "flash_rodata": -261, - "flash_text": -191, - "iram": 0, - "other": 0, - "total": -576 + ".dram0.bss": -4, + ".dram0.data": -120, + ".flash.rodata": -261, + ".flash.text": -191, + "flash_total": -572, + "ram_st_total": -124 }, "libspi_flash.a:flash_mmap.c.o": { - "bss": -264, - "data": 0, - "diram": 0, - "flash_rodata": -296, - "flash_text": -125, - "iram": -1320, - "other": 0, - "total": -2005 + ".dram0.bss": -264, + ".flash.rodata": -296, + ".flash.text": -125, + ".iram0.text": -1320, + "flash_total": -1741, + "ram_st_total": -1584 }, "libspi_flash.a:flash_mmap.o": { - "bss": 296, - "data": 0, - "diram": 0, - "flash_rodata": 327, - "flash_text": 124, - "iram": 1298, - "other": 0, - "total": 2045 + ".dram0.bss": 296, + ".flash.rodata": 327, + ".flash.text": 124, + ".iram0.text": 1298, + "flash_total": 1749, + "ram_st_total": 1594 }, "libspi_flash.a:flash_ops.c.o": { - "bss": -4, - "data": -20, - "diram": 0, - "flash_rodata": 0, - "flash_text": -29, - "iram": -14, - "other": 0, - "total": -67 + ".dram0.bss": -4, + ".dram0.data": -20, + ".flash.text": -29, + ".iram0.text": -14, + "flash_total": -63, + "ram_st_total": -38 }, "libspi_flash.a:flash_ops.o": { - "bss": 41, - "data": 32, - "diram": 0, - "flash_rodata": 0, - "flash_text": 99, - "iram": 2352, - "other": 0, - "total": 2524 + ".dram0.bss": 41, + ".dram0.data": 32, + ".flash.text": 99, + ".iram0.text": 2352, + "flash_total": 2483, + "ram_st_total": 2425 }, "libspi_flash.a:memspi_host_driver.c.o": { - "bss": 0, - "data": -43, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -206, - "other": 0, - "total": -249 + ".dram0.data": -43, + ".iram0.text": -206, + "flash_total": -249, + "ram_st_total": -249 }, "libspi_flash.a:partition.c.o": { - "bss": -8, - "data": 0, - "diram": 0, - "flash_rodata": -181, - "flash_text": -668, - "iram": 0, - "other": 0, - "total": -857 + ".dram0.bss": -8, + ".flash.rodata": -181, + ".flash.text": -668, + "flash_total": -849, + "ram_st_total": -8 }, "libspi_flash.a:partition.o": { - "bss": 8, - "data": 0, - "diram": 0, - "flash_rodata": 141, - "flash_text": 582, - "iram": 0, - "other": 0, - "total": 731 + ".dram0.bss": 8, + ".flash.rodata": 141, + ".flash.text": 582, + "flash_total": 723, + "ram_st_total": 8 }, "libspi_flash.a:spi_flash_chip_drivers.c.o": { - "bss": 0, - "data": -20, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": -20 + ".dram0.data": -20, + "flash_total": -20, + "ram_st_total": -20 }, "libspi_flash.a:spi_flash_chip_gd.c.o": { - "bss": 0, - "data": -95, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -181, - "other": 0, - "total": -276 + ".dram0.data": -95, + ".iram0.text": -181, + "flash_total": -276, + "ram_st_total": -276 }, "libspi_flash.a:spi_flash_chip_generic.c.o": { - "bss": 0, - "data": -340, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -1423, - "other": 0, - "total": -1763 + ".dram0.data": -340, + ".iram0.text": -1423, + "flash_total": -1763, + "ram_st_total": -1763 }, "libspi_flash.a:spi_flash_chip_issi.c.o": { - "bss": 0, - "data": -97, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -101, - "other": 0, - "total": -198 + ".dram0.data": -97, + ".iram0.text": -101, + "flash_total": -198, + "ram_st_total": -198 }, "libspi_flash.a:spi_flash_os_func_app.c.o": { - "bss": 0, - "data": -24, - "diram": 0, - "flash_rodata": 0, - "flash_text": -25, - "iram": -91, - "other": 0, - "total": -140 + ".dram0.data": -24, + ".flash.text": -25, + ".iram0.text": -91, + "flash_total": -140, + "ram_st_total": -115 }, "libspi_flash.a:spi_flash_os_func_noos.c.o": { - "bss": 0, - "data": -16, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -127, - "other": 0, - "total": -143 + ".dram0.data": -16, + ".iram0.text": -127, + "flash_total": -143, + "ram_st_total": -143 }, "libspi_flash.a:spi_flash_rom_patch.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libspi_flash.a:spi_flash_rom_patch.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 766, - "flash_text": 0, - "iram": 2518, - "other": 0, - "total": 3284 + ".flash.rodata": 766, + ".iram0.text": 2518, + "flash_total": 3284, + "ram_st_total": 2518 }, "libstdc++.a:bad_alloc.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libstdc++.a:class_type_info.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 112, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 112 + ".flash.rodata": 112, + "flash_total": 112, + "ram_st_total": 0 }, "libstdc++.a:del_op.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libstdc++.a:del_opv.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libstdc++.a:eh_exception.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libstdc++.a:eh_globals.o": { - "bss": 16, - "data": 0, - "diram": 0, - "flash_rodata": 193, - "flash_text": 149, - "iram": 0, - "other": 0, - "total": 358 + ".dram0.bss": 16, + ".flash.rodata": 193, + ".flash.text": 149, + "flash_total": 342, + "ram_st_total": 16 }, "libstdc++.a:eh_personality.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 384, - "flash_text": 1561, - "iram": 0, - "other": 0, - "total": 1945 + ".flash.rodata": 384, + ".flash.text": 1561, + "flash_total": 1945, + "ram_st_total": 0 }, "libstdc++.a:eh_term_handler.o": { - "bss": 0, - "data": 4, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 4 + ".dram0.data": 4, + "flash_total": 4, + "ram_st_total": 4 }, "libstdc++.a:eh_terminate.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 141, - "flash_text": 117, - "iram": 0, - "other": 0, - "total": 258 + ".flash.rodata": 141, + ".flash.text": 117, + "flash_total": 258, + "ram_st_total": 0 }, "libstdc++.a:eh_unex_handler.o": { - "bss": 0, - "data": 4, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 4 + ".dram0.data": 4, + "flash_total": 4, + "ram_st_total": 4 }, "libstdc++.a:new_handler.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libstdc++.a:new_op.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 40, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 40 + ".flash.rodata": 40, + "flash_total": 40, + "ram_st_total": 0 }, "libstdc++.a:new_opv.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 56, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 56 + ".flash.rodata": 56, + "flash_total": 56, + "ram_st_total": 0 }, "libstdc++.a:pure.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libstdc++.a:si_class_type_info.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 136, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 136 + ".flash.rodata": 136, + "flash_total": 136, + "ram_st_total": 0 }, "libstdc++.a:tinfo.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libtcpip_adapter.a:tcpip_adapter_lwip.o": { - "bss": 81, - "data": 0, - "diram": 0, - "flash_rodata": 359, - "flash_text": 180, - "iram": 0, - "other": 0, - "total": 620 + ".dram0.bss": 81, + ".flash.rodata": 359, + ".flash.text": 180, + "flash_total": 539, + "ram_st_total": 81 }, "libunity.a:test_utils.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 140, - "flash_text": 38, - "iram": 0, - "other": 0, - "total": 178 + ".flash.rodata": 140, + ".flash.text": 38, + "flash_total": 178, + "ram_st_total": 0 }, "libunity.a:unity.o": { - "bss": 108, - "data": 0, - "diram": 0, - "flash_rodata": 90, - "flash_text": 767, - "iram": 0, - "other": 0, - "total": 965 + ".dram0.bss": 108, + ".flash.rodata": 90, + ".flash.text": 767, + "flash_total": 857, + "ram_st_total": 108 }, "libunity.a:unity_platform.o": { - "bss": 13, - "data": 0, - "diram": 0, - "flash_rodata": 600, - "flash_text": 1511, - "iram": 0, - "other": 0, - "total": 2124 + ".dram0.bss": 13, + ".flash.rodata": 600, + ".flash.text": 1511, + "flash_total": 2111, + "ram_st_total": 13 }, "libvfs.a:vfs.c.o": { - "bss": -40, - "data": -192, - "diram": 0, - "flash_rodata": -132, - "flash_text": -1892, - "iram": 0, - "other": 0, - "total": -2256 + ".dram0.bss": -40, + ".dram0.data": -192, + ".flash.rodata": -132, + ".flash.text": -1892, + "flash_total": -2216, + "ram_st_total": -232 }, "libvfs.a:vfs.o": { - "bss": 40, - "data": 192, - "diram": 0, - "flash_rodata": 132, - "flash_text": 1995, - "iram": 0, - "other": 0, - "total": 2359 + ".dram0.bss": 40, + ".dram0.data": 192, + ".flash.rodata": 132, + ".flash.text": 1995, + "flash_total": 2319, + "ram_st_total": 232 }, "libvfs.a:vfs_uart.c.o": { - "bss": -8, - "data": -116, - "diram": 0, - "flash_rodata": -783, - "flash_text": -3758, - "iram": 0, - "other": 0, - "total": -4665 + ".dram0.bss": -8, + ".dram0.data": -116, + ".flash.rodata": -783, + ".flash.text": -3758, + "flash_total": -4657, + "ram_st_total": -124 }, "libvfs.a:vfs_uart.o": { - "bss": 63, - "data": 40, - "diram": 0, - "flash_rodata": 271, - "flash_text": 1775, - "iram": 0, - "other": 0, - "total": 2149 + ".dram0.bss": 63, + ".dram0.data": 40, + ".flash.rodata": 271, + ".flash.text": 1775, + "flash_total": 2086, + "ram_st_total": 103 }, "libwpa.a:ap_config.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:common.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa_auth.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa_auth_ie.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa_common.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa_debug.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa_ie.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpa_main.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpabuf.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa.a:wpas_glue.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa2.a:wpa2_internal.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa_supplicant.a:md5-internal.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwpa_supplicant.a:os_xtensa.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libwps.a:wps_internal.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 }, "libxtensa-debug-module.a:eri.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 8, - "other": 0, - "total": 8 + ".iram0.text": 8, + "flash_total": 8, + "ram_st_total": 8 }, "libxtensa.a:debug_helpers.c.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": -217, - "other": 0, - "total": -217 + ".iram0.text": -217, + "flash_total": -217, + "ram_st_total": -217 }, "libxtensa.a:debug_helpers_asm.S.o": { - "bss": 0, - "data": 0, - "diram": 0, - "flash_rodata": 0, - "flash_text": 0, - "iram": 0, - "other": 0, - "total": 0 + "flash_total": 0, + "ram_st_total": 0 } } } @@ -17543,7 +12340,11 @@ Producing JSON output... }, ".iram0.text": {}, ".iram0.vectors": {}, - ".noinit": {} + ".noinit": {}, + ".rtc.bss": {}, + ".rtc.data": {}, + ".rtc.text": {}, + ".rtc_noinit": {} }, "reference": { ".dram0.bss": { @@ -17633,8 +12434,13 @@ Producing JSON output... "uart_get_selectlock": 12 }, ".iram0.text": {}, + ".iram0.text_end": {}, ".iram0.vectors": {}, - ".noinit": {} + ".noinit": {}, + ".rtc.bss": {}, + ".rtc.data": {}, + ".rtc.text": {}, + ".rtc_noinit": {} }, "diff": { ".dram0.bss": { @@ -17736,8 +12542,13 @@ Producing JSON output... "uart_wait_tx_done": -425 }, ".iram0.text": {}, + ".iram0.text_end": {}, ".iram0.vectors": {}, - ".noinit": {} + ".noinit": {}, + ".rtc.bss": {}, + ".rtc.data": {}, + ".rtc.text": {}, + ".rtc_noinit": {} } } diff --git a/tools/test_idf_size/expected_output.json b/tools/test_idf_size/expected_output.json index 7b93bf6ecd..53c3f9eed6 100644 --- a/tools/test_idf_size/expected_output.json +++ b/tools/test_idf_size/expected_output.json @@ -1,17 +1,32 @@ { "dram_data": 9324, "dram_bss": 8296, + "dram_rodata": 0, "dram_other": 0, "used_dram": 17620, - "available_dram": 163116, + "dram_total": 180736, "used_dram_ratio": 0.09749026203966006, + "dram_remain": 163116, + "iram_vectors": 1024, + "iram_text": 37908, + "iram_other": 0, "used_iram": 38932, - "available_iram": 92140, + "iram_total": 131072, "used_iram_ratio": 0.297027587890625, - "used_diram": 0, - "available_diram": 0, - "used_diram_ratio": 0, + "iram_remain": 92140, + "diram_data": 9324, + "diram_bss": 8296, + "diram_text": 37908, + "diram_vectors": 1024, + "diram_rodata": 0, + "diram_other": 0, + "diram_total": 311808, + "used_diram": 56552, + "used_diram_ratio": 0.18136802134646962, + "diram_remain": 255256, "flash_code": 146944, "flash_rodata": 39580, - "total_size": 234780 + "flash_other": 0, + "used_flash_non_ram": 186524, + "total_size": 283036 } diff --git a/tools/test_idf_size/expected_output.txt b/tools/test_idf_size/expected_output.txt index 2ead3a4c16..b41f162be3 100644 --- a/tools/test_idf_size/expected_output.txt +++ b/tools/test_idf_size/expected_output.txt @@ -1,8 +1,16 @@ Total sizes: - DRAM .data size: 9324 bytes - DRAM .bss size: 8296 bytes -Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) -Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) - Flash code: 146944 bytes - Flash rodata: 39580 bytes -Total image size:~ 234780 bytes (.bin may be padded larger) +Used static DRAM: 17620 bytes ( 163116 remain, 9.7% used) + .data size: 9324 bytes + .bss size: 8296 bytes +Used static IRAM: 38932 bytes ( 92140 remain, 29.7% used) + .text size: 37908 bytes + .vectors size: 1024 bytes +Used stat D/IRAM: 56552 bytes ( 255256 remain, 18.1% used) + .data size: 9324 bytes + .bss size: 8296 bytes + .text size: 37908 bytes + .vectors size: 1024 bytes +Used Flash size : 186524 bytes + .text : 146944 bytes + .rodata : 39580 bytes +Total image size: 283036 bytes (.bin may be padded larger) diff --git a/tools/test_idf_size/test.sh b/tools/test_idf_size/test.sh index ed762ece62..5f6aa156e3 100755 --- a/tools/test_idf_size/test.sh +++ b/tools/test_idf_size/test.sh @@ -64,6 +64,26 @@ && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s2 --archive_details libdriver.a app_esp32s2.map &>> output \ && echo -e "\n***\nRunning idf_size.py diff with another app (different target)..." &>> output \ && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff app_esp32s2.map &>> output \ + && echo -e "\n***\nRunning idf_size.py for esp32c3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32c3 app_esp32c3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py for esp32c3 (target autodetected)..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app_esp32c3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --archives for esp32c3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32c3 --archives app_esp32c3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --files for esp32c3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32c3 --files app_esp32c3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --archive_details for esp32c3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32c3 --archive_details libdriver.a app_esp32c3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py for esp32s3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s3 app_esp32s3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py for esp32s3 (target autodetected)..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app_esp32s3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --archives for esp32s3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s3 --archives app_esp32s3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --files for esp32s3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s3 --files app_esp32s3.map &>> output \ + && echo -e "\n***\nRunning idf_size.py --archive_details for esp32s3..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s3 --archive_details libdriver.a app_esp32s3.map &>> output \ && echo -e "\n***\nProducing JSON output..." &>> output \ && coverage run -a $IDF_PATH/tools/idf_size.py --json app.map &>> output \ && coverage run -a $IDF_PATH/tools/idf_size.py --json --archives app.map &>> output \ diff --git a/tools/test_idf_size/test_idf_size.py b/tools/test_idf_size/test_idf_size.py index 1ba6a33b19..385f4e5410 100644 --- a/tools/test_idf_size/test_idf_size.py +++ b/tools/test_idf_size/test_idf_size.py @@ -17,6 +17,7 @@ from __future__ import print_function import sys +from typing import Dict try: import idf_size @@ -41,6 +42,6 @@ if __name__ == '__main__': segments = {'iram0_0_seg': {'origin': 0, 'length': 0}, 'dram0_0_seg': {'origin': 0, 'length': 0}} - sections = {} + sections = {} # type: Dict print(idf_size.get_summary('a.map', segments, sections, 'esp32'), end='')